Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Configuration / ConnectionOrientedTransportElement.cs / 1 / ConnectionOrientedTransportElement.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.ServiceModel.Configuration { using System.Configuration; using System.ServiceModel; using System.Net.Security; using System.Security.Principal; using System.ServiceModel.Channels; using System.ComponentModel; public abstract partial class ConnectionOrientedTransportElement : TransportElement { internal ConnectionOrientedTransportElement() { } [ConfigurationProperty(ConfigurationStrings.ConnectionBufferSize, DefaultValue = ConnectionOrientedTransportDefaults.ConnectionBufferSize)] [IntegerValidator(MinValue = 1)] public int ConnectionBufferSize { get {return (int) base[ConfigurationStrings.ConnectionBufferSize]; } set {base[ConfigurationStrings.ConnectionBufferSize] = value; } } [ConfigurationProperty(ConfigurationStrings.HostNameComparisonMode, DefaultValue = ConnectionOrientedTransportDefaults.HostNameComparisonMode)] [ServiceModelEnumValidatorAttribute(typeof(HostNameComparisonModeHelper))] public HostNameComparisonMode HostNameComparisonMode { get { return (HostNameComparisonMode)base[ConfigurationStrings.HostNameComparisonMode]; } set { base[ConfigurationStrings.HostNameComparisonMode] = value; } } [ConfigurationProperty(ConfigurationStrings.ChannelInitializationTimeout, DefaultValue = ConnectionOrientedTransportDefaults.ChannelInitializationTimeoutString)] [TypeConverter(typeof(TimeSpanOrInfiniteConverter))] [ServiceModelTimeSpanValidator(MinValueString = ConfigurationStrings.TimeSpanOneTick)] public TimeSpan ChannelInitializationTimeout { get { return (TimeSpan)base[ConfigurationStrings.ChannelInitializationTimeout]; } set { base[ConfigurationStrings.ChannelInitializationTimeout] = value; } } [ConfigurationProperty(ConfigurationStrings.MaxBufferSize, DefaultValue = TransportDefaults.MaxBufferSize)] [IntegerValidator(MinValue = 1)] public int MaxBufferSize { get {return (int) base[ConfigurationStrings.MaxBufferSize]; } set {base[ConfigurationStrings.MaxBufferSize] = value; } } [ConfigurationProperty(ConfigurationStrings.MaxPendingConnections, DefaultValue = ConnectionOrientedTransportDefaults.MaxPendingConnections)] [IntegerValidator(MinValue = 1)] public int MaxPendingConnections { get {return (int) base[ConfigurationStrings.MaxPendingConnections]; } set {base[ConfigurationStrings.MaxPendingConnections] = value; } } [ConfigurationProperty(ConfigurationStrings.MaxOutputDelay, DefaultValue = ConnectionOrientedTransportDefaults.MaxOutputDelayString)] [TypeConverter(typeof(TimeSpanOrInfiniteConverter))] [ServiceModelTimeSpanValidator(MinValueString = ConfigurationStrings.TimeSpanZero)] public TimeSpan MaxOutputDelay { get {return (TimeSpan) base[ConfigurationStrings.MaxOutputDelay]; } set {base[ConfigurationStrings.MaxOutputDelay] = value; } } [ConfigurationProperty(ConfigurationStrings.MaxPendingAccepts, DefaultValue = ConnectionOrientedTransportDefaults.MaxPendingAccepts)] [IntegerValidator(MinValue = 1)] public int MaxPendingAccepts { get {return (int) base[ConfigurationStrings.MaxPendingAccepts]; } set {base[ConfigurationStrings.MaxPendingAccepts] = value; } } [ConfigurationProperty(ConfigurationStrings.TransferMode, DefaultValue = ConnectionOrientedTransportDefaults.TransferMode)] [ServiceModelEnumValidator(typeof(TransferModeHelper))] public TransferMode TransferMode { get {return (TransferMode) base[ConfigurationStrings.TransferMode]; } set {base[ConfigurationStrings.TransferMode] = value; } } public override void ApplyConfiguration(BindingElement bindingElement) { base.ApplyConfiguration(bindingElement); ConnectionOrientedTransportBindingElement binding = (ConnectionOrientedTransportBindingElement) bindingElement; binding.ConnectionBufferSize = this.ConnectionBufferSize; binding.HostNameComparisonMode = this.HostNameComparisonMode; binding.ChannelInitializationTimeout = this.ChannelInitializationTimeout; PropertyInformationCollection propertyInfo = this.ElementInformation.Properties; if (propertyInfo[ConfigurationStrings.MaxBufferSize].ValueOrigin != PropertyValueOrigin.Default) { binding.MaxBufferSize = this.MaxBufferSize; } binding.MaxPendingConnections = this.MaxPendingConnections; binding.MaxOutputDelay = this.MaxOutputDelay; binding.MaxPendingAccepts = this.MaxPendingAccepts; binding.TransferMode = this.TransferMode; } public override void CopyFrom(ServiceModelExtensionElement from) { base.CopyFrom(from); ConnectionOrientedTransportElement source = (ConnectionOrientedTransportElement) from; #pragma warning suppress 56506 // [....], base.CopyFrom() validates the argument this.ConnectionBufferSize = source.ConnectionBufferSize; this.HostNameComparisonMode = source.HostNameComparisonMode; this.ChannelInitializationTimeout = source.ChannelInitializationTimeout; this.MaxBufferSize = source.MaxBufferSize; this.MaxPendingConnections = source.MaxPendingConnections; this.MaxOutputDelay = source.MaxOutputDelay; this.MaxPendingAccepts = source.MaxPendingAccepts; this.TransferMode = source.TransferMode; } protected internal override void InitializeFrom(BindingElement bindingElement) { base.InitializeFrom(bindingElement); ConnectionOrientedTransportBindingElement binding = (ConnectionOrientedTransportBindingElement) bindingElement; this.ConnectionBufferSize = binding.ConnectionBufferSize; this.HostNameComparisonMode = binding.HostNameComparisonMode; this.ChannelInitializationTimeout = binding.ChannelInitializationTimeout; this.MaxBufferSize = binding.MaxBufferSize; this.MaxPendingConnections = binding.MaxPendingConnections; this.MaxOutputDelay = binding.MaxOutputDelay; this.MaxPendingAccepts = binding.MaxPendingAccepts; this.TransferMode = binding.TransferMode; } } } // 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
- InvalidOperationException.cs
- StringWriter.cs
- PlatformNotSupportedException.cs
- xml.cs
- URLString.cs
- ContentElementCollection.cs
- QueryRewriter.cs
- IISUnsafeMethods.cs
- Permission.cs
- LockRecursionException.cs
- DllNotFoundException.cs
- ObservableCollection.cs
- OutputWindow.cs
- IsolatedStorageException.cs
- RenderData.cs
- Int32AnimationBase.cs
- InternalBase.cs
- GenericTextProperties.cs
- DataGridViewCell.cs
- ContentPresenter.cs
- ArgIterator.cs
- AnnouncementEndpointElement.cs
- SharedPerformanceCounter.cs
- _ProxyRegBlob.cs
- PageClientProxyGenerator.cs
- SizeAnimationBase.cs
- LoginView.cs
- CompoundFileIOPermission.cs
- DateTimeOffset.cs
- DiagnosticsConfigurationHandler.cs
- ResourcePermissionBaseEntry.cs
- GridViewCommandEventArgs.cs
- InputProcessorProfiles.cs
- PolyBezierSegment.cs
- SafeCoTaskMem.cs
- VisualStyleElement.cs
- SqlRemoveConstantOrderBy.cs
- MappingModelBuildProvider.cs
- QilScopedVisitor.cs
- CompilerTypeWithParams.cs
- CSharpCodeProvider.cs
- TemplateComponentConnector.cs
- WebPartManagerInternals.cs
- CompositeControl.cs
- WebPartDisplayModeEventArgs.cs
- FloaterParagraph.cs
- AffineTransform3D.cs
- DrawingContext.cs
- VirtualPathExtension.cs
- FormViewInsertEventArgs.cs
- BufferAllocator.cs
- COM2ExtendedBrowsingHandler.cs
- OleDbDataReader.cs
- AuthenticationModuleElement.cs
- QueryReaderSettings.cs
- Token.cs
- Base64Stream.cs
- Bezier.cs
- Random.cs
- SequenceDesigner.xaml.cs
- RelAssertionDirectKeyIdentifierClause.cs
- OutputCacheSettingsSection.cs
- validationstate.cs
- FormsAuthenticationCredentials.cs
- UriSectionData.cs
- UrlAuthFailedErrorFormatter.cs
- Empty.cs
- AssemblyName.cs
- QilExpression.cs
- DaylightTime.cs
- AsmxEndpointPickerExtension.cs
- PageParser.cs
- NumericExpr.cs
- SqlDeflator.cs
- OpacityConverter.cs
- DependentList.cs
- HelloOperation11AsyncResult.cs
- OwnerDrawPropertyBag.cs
- InstanceDataCollection.cs
- MexTcpBindingElement.cs
- AssemblyAttributesGoHere.cs
- MarkupWriter.cs
- CTreeGenerator.cs
- AnnotationResourceCollection.cs
- QilXmlReader.cs
- TreeViewHitTestInfo.cs
- AuthenticationManager.cs
- TabItemAutomationPeer.cs
- Shape.cs
- BitmapSizeOptions.cs
- DataGridViewCheckBoxCell.cs
- RotateTransform.cs
- BrowserCapabilitiesFactoryBase.cs
- ScriptRegistrationManager.cs
- SchemaCompiler.cs
- UnsafeNativeMethods.cs
- DeclarativeCatalogPart.cs
- Set.cs
- CustomTypeDescriptor.cs
- FloaterParagraph.cs