Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Configuration / ReliableSessionElement.cs / 1 / ReliableSessionElement.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.ServiceModel.Configuration { using System.Configuration; using System.ServiceModel.Channels; using System.ServiceModel; using System.Globalization; using System.ComponentModel; public sealed partial class ReliableSessionElement : BindingElementExtensionElement { public ReliableSessionElement() { } [ConfigurationProperty(ConfigurationStrings.AcknowledgementInterval, DefaultValue = ReliableSessionDefaults.AcknowledgementIntervalString)] [TypeConverter(typeof(TimeSpanOrInfiniteConverter))] [ServiceModelTimeSpanValidator(MinValueString = ConfigurationStrings.TimeSpanOneTick)] public TimeSpan AcknowledgementInterval { get {return (TimeSpan) base[ConfigurationStrings.AcknowledgementInterval]; } set {base[ConfigurationStrings.AcknowledgementInterval] = value; } } public override Type BindingElementType { get {return typeof(ReliableSessionBindingElement); } } [ConfigurationProperty(ConfigurationStrings.FlowControlEnabled, DefaultValue = true)] public bool FlowControlEnabled { get { return (bool)base[ConfigurationStrings.FlowControlEnabled]; } set { base[ConfigurationStrings.FlowControlEnabled] = value; } } [ConfigurationProperty(ConfigurationStrings.InactivityTimeout, DefaultValue = ReliableSessionDefaults.InactivityTimeoutString)] [TypeConverter(typeof(TimeSpanOrInfiniteConverter))] [ServiceModelTimeSpanValidator(MinValueString = ConfigurationStrings.TimeSpanOneTick)] public TimeSpan InactivityTimeout { get {return (TimeSpan) base[ConfigurationStrings.InactivityTimeout]; } set {base[ConfigurationStrings.InactivityTimeout] = value; } } [ConfigurationProperty(ConfigurationStrings.MaxPendingChannels, DefaultValue = ReliableSessionDefaults.MaxPendingChannels)] [IntegerValidator(MinValue = 1, MaxValue = 16384)] public int MaxPendingChannels { get {return (int) base[ConfigurationStrings.MaxPendingChannels]; } set {base[ConfigurationStrings.MaxPendingChannels] = value; } } [ConfigurationProperty(ConfigurationStrings.MaxRetryCount, DefaultValue = ReliableSessionDefaults.MaxRetryCount)] [IntegerValidator(MinValue = 1)] public int MaxRetryCount { get {return (int) base[ConfigurationStrings.MaxRetryCount]; } set {base[ConfigurationStrings.MaxRetryCount] = value; } } [ConfigurationProperty(ConfigurationStrings.MaxTransferWindowSize, DefaultValue = ReliableSessionDefaults.MaxTransferWindowSize)] [IntegerValidator(MinValue = 1, MaxValue = 4096)] public int MaxTransferWindowSize { get { return (int)base[ConfigurationStrings.MaxTransferWindowSize]; } set { base[ConfigurationStrings.MaxTransferWindowSize] = value; } } [ConfigurationProperty(ConfigurationStrings.Ordered, DefaultValue = ReliableSessionDefaults.Ordered)] public bool Ordered { get {return (bool) base[ConfigurationStrings.Ordered]; } set {base[ConfigurationStrings.Ordered] = value; } } [ConfigurationProperty(ConfigurationStrings.ReliableMessagingVersion, DefaultValue = ReliableSessionDefaults.ReliableMessagingVersionString)] [TypeConverter(typeof(ReliableMessagingVersionConverter))] public ReliableMessagingVersion ReliableMessagingVersion { get { return (ReliableMessagingVersion)base[ConfigurationStrings.ReliableMessagingVersion]; } set { base[ConfigurationStrings.ReliableMessagingVersion] = value; } } public override void ApplyConfiguration(BindingElement bindingElement) { base.ApplyConfiguration(bindingElement); ReliableSessionBindingElement binding = (ReliableSessionBindingElement)bindingElement; binding.AcknowledgementInterval = this.AcknowledgementInterval; binding.FlowControlEnabled = this.FlowControlEnabled; binding.InactivityTimeout = this.InactivityTimeout; binding.MaxPendingChannels = this.MaxPendingChannels; binding.MaxRetryCount = this.MaxRetryCount; binding.MaxTransferWindowSize = this.MaxTransferWindowSize; binding.Ordered = this.Ordered; binding.ReliableMessagingVersion = this.ReliableMessagingVersion; } public override void CopyFrom(ServiceModelExtensionElement from) { base.CopyFrom(from); ReliableSessionElement source = (ReliableSessionElement) from; #pragma warning suppress 56506 //[....]; base.CopyFrom() checks for 'from' being null this.AcknowledgementInterval = source.AcknowledgementInterval; this.FlowControlEnabled = source.FlowControlEnabled; this.InactivityTimeout = source.InactivityTimeout; this.MaxPendingChannels = source.MaxPendingChannels; this.MaxRetryCount = source.MaxRetryCount; this.MaxTransferWindowSize = source.MaxTransferWindowSize; this.Ordered = source.Ordered; this.ReliableMessagingVersion = source.ReliableMessagingVersion; } protected internal override BindingElement CreateBindingElement() { ReliableSessionBindingElement binding = new ReliableSessionBindingElement(); this.ApplyConfiguration(binding); return binding; } protected internal override void InitializeFrom(BindingElement bindingElement) { base.InitializeFrom(bindingElement); ReliableSessionBindingElement binding = (ReliableSessionBindingElement) bindingElement; this.AcknowledgementInterval = binding.AcknowledgementInterval; this.FlowControlEnabled = binding.FlowControlEnabled; this.InactivityTimeout = binding.InactivityTimeout; this.MaxPendingChannels = binding.MaxPendingChannels; this.MaxRetryCount = binding.MaxRetryCount; this.MaxTransferWindowSize = binding.MaxTransferWindowSize; this.Ordered = binding.Ordered; this.ReliableMessagingVersion = binding.ReliableMessagingVersion; } } } // 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
- ParallelTimeline.cs
- RectangleHotSpot.cs
- PhysicalFontFamily.cs
- ContractBase.cs
- NotImplementedException.cs
- UnsafeNativeMethods.cs
- MatchingStyle.cs
- VectorConverter.cs
- TypeExtensionSerializer.cs
- StreamSecurityUpgradeAcceptorAsyncResult.cs
- EventMappingSettings.cs
- SoapParser.cs
- BitmapEffectDrawing.cs
- NonNullItemCollection.cs
- _BufferOffsetSize.cs
- FixedTextView.cs
- DrawTreeNodeEventArgs.cs
- KeyValuePair.cs
- EntryWrittenEventArgs.cs
- ExecutionContext.cs
- SrgsElementList.cs
- IPPacketInformation.cs
- ResourceKey.cs
- WindowsListView.cs
- XMLUtil.cs
- RepeaterItem.cs
- NamespaceList.cs
- controlskin.cs
- XmlILTrace.cs
- sqlmetadatafactory.cs
- IImplicitResourceProvider.cs
- StructuredTypeEmitter.cs
- VirtualizedCellInfoCollection.cs
- RectAnimation.cs
- CaseInsensitiveHashCodeProvider.cs
- ZoneLinkButton.cs
- Paragraph.cs
- BypassElementCollection.cs
- TagPrefixCollection.cs
- FullTextLine.cs
- ErrorHandler.cs
- ResourceAttributes.cs
- Utils.cs
- ClientData.cs
- RefType.cs
- HttpTransportBindingElement.cs
- BindStream.cs
- ResourceBinder.cs
- SystemInfo.cs
- codemethodreferenceexpression.cs
- SqlException.cs
- CmsUtils.cs
- StreamGeometry.cs
- MinMaxParagraphWidth.cs
- HtmlAnchor.cs
- XamlBrushSerializer.cs
- ReferencedType.cs
- TrackingRecord.cs
- UIElementParaClient.cs
- ObjectTag.cs
- SqlDataSourceConnectionPanel.cs
- InlineCollection.cs
- ControlBindingsCollection.cs
- ZipIOLocalFileDataDescriptor.cs
- MethodRental.cs
- ZipFileInfoCollection.cs
- Color.cs
- Clause.cs
- CacheHelper.cs
- _UriSyntax.cs
- DirtyTextRange.cs
- Freezable.cs
- CodeVariableDeclarationStatement.cs
- ResourcesGenerator.cs
- _SslSessionsCache.cs
- DashStyle.cs
- HyperLinkField.cs
- PowerStatus.cs
- StylusPlugInCollection.cs
- SynchronizationHandlesCodeDomSerializer.cs
- PropertyPushdownHelper.cs
- WebExceptionStatus.cs
- TransformDescriptor.cs
- HtmlTableCellCollection.cs
- ListViewGroupConverter.cs
- EncoderNLS.cs
- NamespaceList.cs
- VersionPair.cs
- DeploymentExceptionMapper.cs
- InvalidPropValue.cs
- XPathExpr.cs
- ConfigXmlComment.cs
- odbcmetadatacolumnnames.cs
- MenuItemBindingCollection.cs
- AccessorTable.cs
- DoubleStorage.cs
- DataGridViewComboBoxColumnDesigner.cs
- ProcessThread.cs
- KnownIds.cs
- SortedList.cs