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
- QilXmlWriter.cs
- SafeFileHandle.cs
- Package.cs
- DataGridTablesFactory.cs
- HwndSubclass.cs
- UnsafeNativeMethodsPenimc.cs
- ListBindableAttribute.cs
- AsyncContentLoadedEventArgs.cs
- IndentTextWriter.cs
- SchemaElementLookUpTableEnumerator.cs
- XmlNodeChangedEventArgs.cs
- CompilerScope.cs
- PropertyItem.cs
- InvalidCommandTreeException.cs
- base64Transforms.cs
- ScriptBehaviorDescriptor.cs
- UrlAuthorizationModule.cs
- GeneralTransform3DTo2DTo3D.cs
- ExtensionDataReader.cs
- SecurityRuntime.cs
- CursorInteropHelper.cs
- DrawingBrush.cs
- DodSequenceMerge.cs
- MenuCommandsChangedEventArgs.cs
- PatternMatcher.cs
- SettingsPropertyNotFoundException.cs
- DependencyPropertyAttribute.cs
- CryptoStream.cs
- BaseTreeIterator.cs
- HostProtectionException.cs
- SetStoryboardSpeedRatio.cs
- HandleCollector.cs
- Int32AnimationUsingKeyFrames.cs
- ContainerSelectorBehavior.cs
- DataObjectFieldAttribute.cs
- Vector3DCollectionConverter.cs
- SharedPerformanceCounter.cs
- RelationshipDetailsRow.cs
- DropShadowEffect.cs
- EntityContainerRelationshipSet.cs
- DataMisalignedException.cs
- StrongNameHelpers.cs
- TraceRecord.cs
- DetailsViewPagerRow.cs
- WebServiceTypeData.cs
- PersistenceContextEnlistment.cs
- BaseCodeDomTreeGenerator.cs
- DecimalAnimationUsingKeyFrames.cs
- bidPrivateBase.cs
- CroppedBitmap.cs
- FieldAccessException.cs
- ToolStripDesignerAvailabilityAttribute.cs
- SingleObjectCollection.cs
- NodeLabelEditEvent.cs
- Point.cs
- SchemaImporterExtensionElementCollection.cs
- XmlIlGenerator.cs
- EventProviderClassic.cs
- RunClient.cs
- DataControlFieldHeaderCell.cs
- IItemProperties.cs
- SqlResolver.cs
- ComboBoxRenderer.cs
- StandardOleMarshalObject.cs
- AxisAngleRotation3D.cs
- EntryWrittenEventArgs.cs
- TdsParserSessionPool.cs
- Vector3DCollection.cs
- XXXOnTypeBuilderInstantiation.cs
- CodeTypeMemberCollection.cs
- HwndHost.cs
- _NetworkingPerfCounters.cs
- NullReferenceException.cs
- ResourcePermissionBaseEntry.cs
- ObjectQuery_EntitySqlExtensions.cs
- ResourcesChangeInfo.cs
- ClientTargetSection.cs
- PropertySourceInfo.cs
- EncryptedKey.cs
- SQLMoney.cs
- XmlAttributeAttribute.cs
- BlurEffect.cs
- GetPageNumberCompletedEventArgs.cs
- XmlSchemaAttributeGroupRef.cs
- ToolBar.cs
- SemanticResultValue.cs
- BindingManagerDataErrorEventArgs.cs
- ProfileManager.cs
- SubMenuStyle.cs
- SqlDelegatedTransaction.cs
- CanonicalizationDriver.cs
- SchemaNamespaceManager.cs
- Command.cs
- UpdatePanelTriggerCollection.cs
- WebPartEditorApplyVerb.cs
- HttpListenerPrefixCollection.cs
- CrossContextChannel.cs
- BrowserDefinition.cs
- ClientScriptManager.cs
- SmtpTransport.cs