Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Configuration / CustomBindingElement.cs / 1 / CustomBindingElement.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.ServiceModel.Configuration { using System.Collections.Generic; using System.ServiceModel.Channels; using System.ComponentModel; using System.Configuration; using System.Globalization; public partial class CustomBindingElement : NamedServiceModelExtensionCollectionElement, ICollection , IBindingConfigurationElement { public CustomBindingElement() : this(null) {} public CustomBindingElement(string name) : base(ConfigurationStrings.BindingElementExtensions, name) {} [ConfigurationProperty(ConfigurationStrings.CloseTimeout, DefaultValue=ServiceDefaults.CloseTimeoutString)] [TypeConverter(typeof(TimeSpanOrInfiniteConverter))] [ServiceModelTimeSpanValidator(MinValueString = ConfigurationStrings.TimeSpanZero)] public TimeSpan CloseTimeout { get { return (TimeSpan)base[ConfigurationStrings.CloseTimeout]; } set { base[ConfigurationStrings.CloseTimeout] = value; this.SetIsModified(); } } [ConfigurationProperty(ConfigurationStrings.OpenTimeout, DefaultValue=ServiceDefaults.OpenTimeoutString)] [TypeConverter(typeof(TimeSpanOrInfiniteConverter))] [ServiceModelTimeSpanValidator(MinValueString = ConfigurationStrings.TimeSpanZero)] public TimeSpan OpenTimeout { get { return (TimeSpan)base[ConfigurationStrings.OpenTimeout]; } set { base[ConfigurationStrings.OpenTimeout] = value; this.SetIsModified(); } } [ConfigurationProperty(ConfigurationStrings.ReceiveTimeout, DefaultValue=ServiceDefaults.ReceiveTimeoutString)] [TypeConverter(typeof(TimeSpanOrInfiniteConverter))] [ServiceModelTimeSpanValidator(MinValueString = ConfigurationStrings.TimeSpanZero)] public TimeSpan ReceiveTimeout { get { return (TimeSpan)base[ConfigurationStrings.ReceiveTimeout]; } set { base[ConfigurationStrings.ReceiveTimeout] = value; this.SetIsModified(); } } [ConfigurationProperty(ConfigurationStrings.SendTimeout, DefaultValue=ServiceDefaults.SendTimeoutString)] [TypeConverter(typeof(TimeSpanOrInfiniteConverter))] [ServiceModelTimeSpanValidator(MinValueString = ConfigurationStrings.TimeSpanZero)] public TimeSpan SendTimeout { get { return (TimeSpan)base[ConfigurationStrings.SendTimeout]; } set { base[ConfigurationStrings.SendTimeout] = value; this.SetIsModified(); } } public override void Add(BindingElementExtensionElement element) { if (null == element) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("element"); } BindingElementExtensionElement existingElement = null; if (!this.CanAddEncodingElement(element, ref existingElement)) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ConfigurationErrorsException(SR.GetString(SR.ConfigMessageEncodingAlreadyInBinding, existingElement.ConfigurationElementName, existingElement.GetType().AssemblyQualifiedName))); } else if (!this.CanAddStreamUpgradeElement(element, ref existingElement)) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ConfigurationErrorsException(SR.GetString(SR.ConfigStreamUpgradeElementAlreadyInBinding, existingElement.ConfigurationElementName, existingElement.GetType().AssemblyQualifiedName))); } else if (!this.CanAddTransportElement(element, ref existingElement)) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ConfigurationErrorsException(SR.GetString(SR.ConfigTransportAlreadyInBinding, existingElement.ConfigurationElementName, existingElement.GetType().AssemblyQualifiedName))); } else { base.Add(element); } } public void ApplyConfiguration(Binding binding) { if (null == binding) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("binding"); } if (binding.GetType() != typeof(CustomBinding)) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument(SR.GetString(SR.ConfigInvalidTypeForBinding, typeof(CustomBinding).AssemblyQualifiedName, binding.GetType().AssemblyQualifiedName)); } binding.CloseTimeout = this.CloseTimeout; binding.OpenTimeout = this.OpenTimeout; binding.ReceiveTimeout = this.ReceiveTimeout; binding.SendTimeout = this.SendTimeout; this.OnApplyConfiguration(binding); } public override bool CanAdd(BindingElementExtensionElement element) { if (null == element) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("element"); } BindingElementExtensionElement existingElement = null; return !this.ContainsKey(element.GetType()) && this.CanAddEncodingElement(element, ref existingElement) && this.CanAddStreamUpgradeElement(element, ref existingElement) && this.CanAddTransportElement(element, ref existingElement); } bool CanAddEncodingElement(BindingElementExtensionElement element, ref BindingElementExtensionElement existingElement) { return this.CanAddExclusiveElement(typeof(MessageEncodingBindingElement), element.BindingElementType, ref existingElement); } bool CanAddExclusiveElement(Type exclusiveType, Type bindingElementType, ref BindingElementExtensionElement existingElement) { bool retval = true; if (exclusiveType.IsAssignableFrom(bindingElementType)) { foreach (BindingElementExtensionElement existing in this) { if (exclusiveType.IsAssignableFrom(existing.BindingElementType)) { retval = false; existingElement = existing; break; } } } return retval; } bool CanAddStreamUpgradeElement(BindingElementExtensionElement element, ref BindingElementExtensionElement existingElement) { return this.CanAddExclusiveElement(typeof(StreamUpgradeBindingElement), element.BindingElementType, ref existingElement); } bool CanAddTransportElement(BindingElementExtensionElement element, ref BindingElementExtensionElement existingElement) { return this.CanAddExclusiveElement(typeof(TransportBindingElement), element.BindingElementType, ref existingElement); } protected void OnApplyConfiguration(Binding binding) { CustomBinding theBinding = (CustomBinding) binding; foreach (BindingElementExtensionElement bindingConfig in this) { theBinding.Elements.Add(bindingConfig.CreateBindingElement()); } } } } // 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
- InfiniteIntConverter.cs
- PhonemeEventArgs.cs
- OdbcParameter.cs
- ChtmlTextWriter.cs
- DirectoryLocalQuery.cs
- IntSecurity.cs
- SuppressMessageAttribute.cs
- RawContentTypeMapper.cs
- DispatchChannelSink.cs
- TypeConverterValueSerializer.cs
- NetworkInterface.cs
- TableItemProviderWrapper.cs
- SqlEnums.cs
- AppDomainFactory.cs
- TrackingQuery.cs
- Int64.cs
- FormsAuthenticationUserCollection.cs
- StringSource.cs
- PolyBezierSegment.cs
- ValidationEventArgs.cs
- PermissionAttributes.cs
- MsmqIntegrationSecurityElement.cs
- TextTreeText.cs
- BindingsCollection.cs
- SoapHeader.cs
- ProviderException.cs
- Renderer.cs
- QueryOperationResponseOfT.cs
- ErrorsHelper.cs
- FrameworkReadOnlyPropertyMetadata.cs
- DynamicMethod.cs
- EncryptedXml.cs
- RadialGradientBrush.cs
- CompiledQuery.cs
- DataServiceRequest.cs
- Property.cs
- BindUriHelper.cs
- UserControl.cs
- DataGridViewColumnDesignTimeVisibleAttribute.cs
- TimeStampChecker.cs
- TextBoxLine.cs
- __Error.cs
- BidPrivateBase.cs
- Opcode.cs
- MappingItemCollection.cs
- SectionInput.cs
- ClientRoleProvider.cs
- TextElementAutomationPeer.cs
- CreateUserWizardDesigner.cs
- Array.cs
- TableRow.cs
- OrthographicCamera.cs
- WsrmFault.cs
- DesignerView.cs
- CurrencyManager.cs
- Debugger.cs
- MemberDescriptor.cs
- ProtocolsConfigurationEntry.cs
- Wow64ConfigurationLoader.cs
- StorageComplexTypeMapping.cs
- PropertyMetadata.cs
- UriScheme.cs
- MaskInputRejectedEventArgs.cs
- CustomAttributeBuilder.cs
- SqlMethodTransformer.cs
- WizardPanelChangingEventArgs.cs
- XmlDocument.cs
- GraphicsState.cs
- ToolboxItemCollection.cs
- SafePipeHandle.cs
- WebServiceHandler.cs
- HiddenField.cs
- HostProtectionPermission.cs
- PropertyInfo.cs
- DispatcherSynchronizationContext.cs
- XPathParser.cs
- WindowShowOrOpenTracker.cs
- PageAsyncTask.cs
- RequestCachingSection.cs
- Model3D.cs
- StringComparer.cs
- DateTimeSerializationSection.cs
- UIInitializationException.cs
- AttributeExtensions.cs
- MatrixStack.cs
- EventProviderWriter.cs
- WindowCollection.cs
- ThreadExceptionDialog.cs
- ComponentResourceKeyConverter.cs
- StyleTypedPropertyAttribute.cs
- StyleXamlTreeBuilder.cs
- XmlSchemaSubstitutionGroup.cs
- SynchronizationContext.cs
- ServerIdentity.cs
- HttpWebRequest.cs
- AccessText.cs
- ExtentCqlBlock.cs
- Size.cs
- RawTextInputReport.cs
- DesignerView.xaml.cs