Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Channels / TransportChannelFactory.cs / 1 / TransportChannelFactory.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Channels { using System.Collections.Generic; using System.Collections.ObjectModel; using System.ServiceModel; using System.Diagnostics; using System.IO; using System.Runtime.Serialization; using System.Text; using System.Threading; abstract class TransportChannelFactory: ChannelFactoryBase , ITransportFactorySettings { BufferManager bufferManager; long maxBufferPoolSize; long maxReceivedMessageSize; MessageEncoderFactory messageEncoderFactory; bool manualAddressing; MessageVersion messageVersion; protected TransportChannelFactory(TransportBindingElement bindingElement, BindingContext context) : this(bindingElement, context, TransportDefaults.GetDefaultMessageEncoderFactory()) { } protected TransportChannelFactory(TransportBindingElement bindingElement, BindingContext context, MessageEncoderFactory defaultMessageEncoderFactory) : base(context.Binding) { this.manualAddressing = bindingElement.ManualAddressing; this.maxBufferPoolSize = bindingElement.MaxBufferPoolSize; this.maxReceivedMessageSize = bindingElement.MaxReceivedMessageSize; Collection messageEncoderBindingElements = context.BindingParameters.FindAll (); if (messageEncoderBindingElements.Count > 1) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.MultipleMebesInParameters))); } else if (messageEncoderBindingElements.Count == 1) { this.messageEncoderFactory = messageEncoderBindingElements[0].CreateMessageEncoderFactory(); context.BindingParameters.Remove (); } else { this.messageEncoderFactory = defaultMessageEncoderFactory; } if (null != this.messageEncoderFactory) this.messageVersion = this.messageEncoderFactory.MessageVersion; else this.messageVersion = MessageVersion.None; } public BufferManager BufferManager { get { return this.bufferManager; } } public long MaxBufferPoolSize { get { return this.maxBufferPoolSize; } } public long MaxReceivedMessageSize { get { return maxReceivedMessageSize; } } public MessageEncoderFactory MessageEncoderFactory { get { return this.messageEncoderFactory; } } public MessageVersion MessageVersion { get { return this.messageVersion; } } public bool ManualAddressing { get { return this.manualAddressing; } } public abstract string Scheme { get; } public override T GetProperty () { if (typeof(T) == typeof(MessageVersion)) { return (T)(object)this.MessageVersion; } if (typeof(T) == typeof(FaultConverter)) { if (null == this.MessageEncoderFactory) return null; else return this.MessageEncoderFactory.Encoder.GetProperty (); } return base.GetProperty (); } protected override void OnAbort() { OnCloseOrAbort(); base.OnAbort(); } protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) { OnCloseOrAbort(); return base.OnBeginClose(timeout, callback, state); } protected override void OnClose(TimeSpan timeout) { OnCloseOrAbort(); base.OnClose(timeout); } void OnCloseOrAbort() { if (this.bufferManager != null) { this.bufferManager.Clear(); } } internal virtual int GetMaxBufferSize() { if (MaxReceivedMessageSize > int.MaxValue) return int.MaxValue; else return (int)MaxReceivedMessageSize; } protected override void OnOpening() { base.OnOpening(); this.bufferManager = BufferManager.CreateBufferManager(MaxBufferPoolSize, GetMaxBufferSize()); } internal void ValidateScheme(Uri via) { if (via.Scheme != this.Scheme) { // URI schemes are case-insensitive, so try a case insensitive compare now if (string.Compare(via.Scheme, this.Scheme, StringComparison.OrdinalIgnoreCase) != 0) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument("via", SR.GetString(SR.InvalidUriScheme, via.Scheme, this.Scheme)); } } } long ITransportFactorySettings.MaxReceivedMessageSize { get { return MaxReceivedMessageSize; } } BufferManager ITransportFactorySettings.BufferManager { get { return BufferManager; } } bool ITransportFactorySettings.ManualAddressing { get { return ManualAddressing; } } MessageEncoderFactory ITransportFactorySettings.MessageEncoderFactory { get { return MessageEncoderFactory; } } } } // 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
- IResourceProvider.cs
- FilteredDataSetHelper.cs
- BinaryParser.cs
- StringAttributeCollection.cs
- ListChangedEventArgs.cs
- BitVector32.cs
- LoginUtil.cs
- DefaultWorkflowLoaderService.cs
- EncodingDataItem.cs
- ConstNode.cs
- StringConverter.cs
- MulticastNotSupportedException.cs
- EndpointAddressProcessor.cs
- BitmapEffectInput.cs
- Typography.cs
- xsdvalidator.cs
- AttributeCollection.cs
- ClientScriptManagerWrapper.cs
- HttpListenerPrefixCollection.cs
- CommandExpr.cs
- TextTrailingWordEllipsis.cs
- SmiContextFactory.cs
- Int64AnimationBase.cs
- AssertFilter.cs
- XmlAttributeAttribute.cs
- RegisteredScript.cs
- PrintDialogDesigner.cs
- TaskDesigner.cs
- QuotedStringWriteStateInfo.cs
- Attributes.cs
- ProfileInfo.cs
- SpeechDetectedEventArgs.cs
- DataKeyCollection.cs
- PointAnimationBase.cs
- TraceLevelStore.cs
- ApplicationHost.cs
- PackageProperties.cs
- XmlAttributeProperties.cs
- WeakReadOnlyCollection.cs
- PackageFilter.cs
- DataGridViewCellStyle.cs
- Pts.cs
- WaitForChangedResult.cs
- XamlPointCollectionSerializer.cs
- MemberPath.cs
- HwndProxyElementProvider.cs
- HttpContext.cs
- XmlName.cs
- versioninfo.cs
- RoleService.cs
- SafeThreadHandle.cs
- EmbossBitmapEffect.cs
- FeatureSupport.cs
- DataControlPagerLinkButton.cs
- FacetDescription.cs
- UrlMappingCollection.cs
- MatcherBuilder.cs
- InlineCollection.cs
- MediaEntryAttribute.cs
- ModifiableIteratorCollection.cs
- SourceChangedEventArgs.cs
- NetSectionGroup.cs
- MD5.cs
- RoleManagerEventArgs.cs
- ConfigXmlComment.cs
- SystemColors.cs
- XmlQualifiedName.cs
- TextEditorMouse.cs
- PageBorderless.cs
- ConversionContext.cs
- ComplexObject.cs
- SiteMapDataSourceView.cs
- TableRow.cs
- Events.cs
- BitmapScalingModeValidation.cs
- QueueAccessMode.cs
- FamilyCollection.cs
- UpDownBase.cs
- GridViewRowEventArgs.cs
- ServiceReference.cs
- Triplet.cs
- XsdBuildProvider.cs
- ToolStripCollectionEditor.cs
- HtmlButton.cs
- Perspective.cs
- httpstaticobjectscollection.cs
- Executor.cs
- EntityDataSourceViewSchema.cs
- SiteMapHierarchicalDataSourceView.cs
- WebServiceHandler.cs
- DisplayToken.cs
- UriExt.cs
- XsdDuration.cs
- LinqDataSourceHelper.cs
- GridViewSortEventArgs.cs
- JsonWriter.cs
- _IPv6Address.cs
- PropertyAccessVisitor.cs
- ActivityExecutor.cs
- ReadOnlyCollectionBase.cs