Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / PeerResolvers / PeerCustomResolverSettings.cs / 1 / PeerCustomResolverSettings.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.PeerResolvers { using System; using System.ServiceModel; using System.ServiceModel.Description; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Configuration; using System.Globalization; using System.Net.Security; using System.ServiceModel.Configuration; using System.ServiceModel.Channels; public class PeerCustomResolverSettings { EndpointAddress address; Binding binding; string bindingSection,bindingConfiguration; PeerResolver resolver; public PeerCustomResolverSettings(){} public EndpointAddress Address { get { return address; } set { address = value; } } public Binding Binding { get { if(binding == null) { if (!String.IsNullOrEmpty(this.bindingSection) && !String.IsNullOrEmpty(this.bindingConfiguration)) binding = ConfigLoader.LookupBinding(this.bindingSection, this.bindingConfiguration); } return binding; } set { binding = value; } } public bool IsBindingSpecified { get { return ((this.binding != null) || (!String.IsNullOrEmpty(this.bindingSection) && !String.IsNullOrEmpty(this.bindingConfiguration))); } } public PeerResolver Resolver { get { return resolver; } set { resolver = value; } } internal string BindingSection { get { return bindingSection; } set { bindingSection = value; } } internal string BindingConfiguration { get { return bindingConfiguration; } set { bindingConfiguration = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EmptyWorkItem.cs
- DataGridLinkButton.cs
- TableCellsCollectionEditor.cs
- LassoHelper.cs
- ImageKeyConverter.cs
- ConfigurationElementCollection.cs
- TextServicesManager.cs
- Vector3D.cs
- Light.cs
- RangeEnumerable.cs
- ReferenceEqualityComparer.cs
- ToolStripDropDownDesigner.cs
- UiaCoreProviderApi.cs
- BitmapEffectvisualstate.cs
- ModelServiceImpl.cs
- InheritedPropertyChangedEventArgs.cs
- StringStorage.cs
- IImplicitResourceProvider.cs
- XmlDeclaration.cs
- WindowsContainer.cs
- MultipleCopiesCollection.cs
- Italic.cs
- PersistenceTypeAttribute.cs
- Psha1DerivedKeyGenerator.cs
- DesignTimeParseData.cs
- PreviewControlDesigner.cs
- BamlResourceDeserializer.cs
- _HeaderInfoTable.cs
- XmlEventCache.cs
- ReliableSession.cs
- BamlTreeMap.cs
- EnumConverter.cs
- OutputCacheModule.cs
- BuildManagerHost.cs
- XmlNamespaceMapping.cs
- HtmlImage.cs
- Win32SafeHandles.cs
- Paragraph.cs
- ChtmlTextWriter.cs
- BitmapDownload.cs
- StylusPlugInCollection.cs
- PtsHost.cs
- CatalogZone.cs
- CodeAccessSecurityEngine.cs
- HTTPNotFoundHandler.cs
- WebPartConnectionsConnectVerb.cs
- QilInvokeLateBound.cs
- DockPanel.cs
- GridItem.cs
- CrossAppDomainChannel.cs
- DrawingContextDrawingContextWalker.cs
- OleDbWrapper.cs
- _SslSessionsCache.cs
- TypeSystem.cs
- XPathNodeHelper.cs
- DataContext.cs
- SrgsToken.cs
- IndexerNameAttribute.cs
- TextTreeInsertUndoUnit.cs
- ObjectConverter.cs
- PriorityItem.cs
- AudioException.cs
- StringConverter.cs
- QueryAsyncResult.cs
- TdsParserStaticMethods.cs
- FlowSwitch.cs
- BitmapEffect.cs
- TextOnlyOutput.cs
- XPathDocument.cs
- ExpressionWriter.cs
- ContentFilePart.cs
- TrackingMemoryStreamFactory.cs
- OdbcConnectionString.cs
- DataColumnMappingCollection.cs
- UserUseLicenseDictionaryLoader.cs
- Executor.cs
- oledbconnectionstring.cs
- _SSPISessionCache.cs
- AmbiguousMatchException.cs
- ISFTagAndGuidCache.cs
- PropertyEmitter.cs
- ThreadStartException.cs
- Inflater.cs
- EraserBehavior.cs
- UpdateRecord.cs
- SourceFilter.cs
- InnerItemCollectionView.cs
- TailCallAnalyzer.cs
- OrthographicCamera.cs
- FileStream.cs
- CachedTypeface.cs
- Slider.cs
- WebPartRestoreVerb.cs
- TabControlCancelEvent.cs
- FormViewInsertEventArgs.cs
- webproxy.cs
- TextElement.cs
- SiteMapNodeItemEventArgs.cs
- DispatcherExceptionEventArgs.cs
- Repeater.cs