Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Channels / TransportBindingElement.cs / 1 / TransportBindingElement.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Channels { using System.Collections.Generic; using System.ServiceModel.Description; using System.Runtime.Serialization; using System.ServiceModel.Security; using System.ServiceModel; using System.Xml; using WsdlNS = System.Web.Services.Description; using System.Collections.ObjectModel; public abstract class TransportBindingElement : BindingElement { bool manualAddressing; long maxBufferPoolSize; long maxReceivedMessageSize; protected TransportBindingElement() { this.manualAddressing = TransportDefaults.ManualAddressing; this.maxBufferPoolSize = TransportDefaults.MaxBufferPoolSize; this.maxReceivedMessageSize = TransportDefaults.MaxReceivedMessageSize; } protected TransportBindingElement(TransportBindingElement elementToBeCloned) : base(elementToBeCloned) { this.manualAddressing = elementToBeCloned.manualAddressing; this.maxBufferPoolSize = elementToBeCloned.maxBufferPoolSize; this.maxReceivedMessageSize = elementToBeCloned.maxReceivedMessageSize; } public bool ManualAddressing { get { return this.manualAddressing; } set { this.manualAddressing = value; } } public virtual long MaxBufferPoolSize { get { return this.maxBufferPoolSize; } set { if (value < 0) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("value", value, SR.GetString(SR.ValueMustBeNonNegative))); } this.maxBufferPoolSize = value; } } public virtual long MaxReceivedMessageSize { get { return this.maxReceivedMessageSize; } set { if (value <= 0) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("value", value, SR.GetString(SR.ValueMustBePositive))); } this.maxReceivedMessageSize = value; } } public abstract string Scheme { get; } internal static IChannelFactoryCreateChannelFactory (TransportBindingElement transport) { Binding binding = new CustomBinding(transport); return binding.BuildChannelFactory (); } internal static IChannelListener CreateChannelListener (TransportBindingElement transport) where TChannel : class, IChannel { Binding binding = new CustomBinding(transport); return binding.BuildChannelListener (); } public override T GetProperty (BindingContext context) { if (context == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("context"); } if (typeof(T) == typeof(ChannelProtectionRequirements)) { ChannelProtectionRequirements myRequirements = this.GetProtectionRequirements(context); myRequirements.Add(context.GetInnerProperty () ?? new ChannelProtectionRequirements()); return (T)(object)myRequirements; } // to cover all our bases, let's iterate through the BindingParameters to make sure // we haven't missed a query (since we're the Transport and we're at the bottom) #pragma warning suppress 56506 // [....], BindingContext.BindingParameters cannot be null Collection bindingElements = context.BindingParameters.FindAll (); T result = default(T); for (int i = 0; i < bindingElements.Count; i++) { result = bindingElements[i].GetIndividualProperty (); if (result != default(T)) { return result; } } if (typeof(T) == typeof(MessageVersion)) { return (T)(object)TransportDefaults.GetDefaultMessageEncoderFactory().MessageVersion; } if (typeof(T) == typeof(XmlDictionaryReaderQuotas)) { return (T)(object)new XmlDictionaryReaderQuotas(); } return null; } ChannelProtectionRequirements GetProtectionRequirements(AddressingVersion addressingVersion) { ChannelProtectionRequirements result = new ChannelProtectionRequirements(); result.IncomingSignatureParts.AddParts(addressingVersion.SignedMessageParts); result.OutgoingSignatureParts.AddParts(addressingVersion.SignedMessageParts); return result; } internal ChannelProtectionRequirements GetProtectionRequirements(BindingContext context) { AddressingVersion addressingVersion = AddressingVersion.WSAddressing10; #pragma warning suppress 56506 // [....], CustomBinding.Elements can never be null MessageEncodingBindingElement messageEncoderBindingElement = context.Binding.Elements.Find (); if (messageEncoderBindingElement != null) { addressingVersion = messageEncoderBindingElement.MessageVersion.Addressing; } return GetProtectionRequirements(addressingVersion); } internal static void ExportWsdlEndpoint(WsdlExporter exporter, WsdlEndpointConversionContext endpointContext, string wsdlTransportUri, AddressingVersion addressingVersion) { if (exporter == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("context"); } if (endpointContext == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("endpointContext"); } // Set SoapBinding Transport URI #pragma warning suppress 56506 // [....], these properties cannot be null in this context BindingElementCollection bindingElements = endpointContext.Endpoint.Binding.CreateBindingElements(); if (wsdlTransportUri != null) { WsdlNS.SoapBinding soapBinding = SoapHelper.GetOrCreateSoapBinding(endpointContext, exporter); if (soapBinding != null) { soapBinding.Transport = wsdlTransportUri; } } if (endpointContext.WsdlPort != null) { WsdlExporter.WSAddressingHelper.AddAddressToWsdlPort(endpointContext.WsdlPort, endpointContext.Endpoint.Address, addressingVersion); } } internal override bool IsMatch(BindingElement b) { if (b == null) { return false; } TransportBindingElement transport = b as TransportBindingElement; if (transport == null) { return false; } if (this.maxBufferPoolSize != transport.MaxBufferPoolSize) { return false; } if (this.maxReceivedMessageSize != transport.MaxReceivedMessageSize) { return false; } return true; } } } // 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
- ConstNode.cs
- DocumentsTrace.cs
- CodeAccessPermission.cs
- ObjectViewQueryResultData.cs
- Win32SafeHandles.cs
- ListenerChannelContext.cs
- NetworkStream.cs
- DoubleLink.cs
- ModelPerspective.cs
- LayoutManager.cs
- ModulesEntry.cs
- HostProtectionException.cs
- ResourceExpressionBuilder.cs
- MdImport.cs
- XamlPathDataSerializer.cs
- AttributeCollection.cs
- EntityDescriptor.cs
- ParameterInfo.cs
- SafeCryptoHandles.cs
- XmlWriter.cs
- PriorityBindingExpression.cs
- CryptoKeySecurity.cs
- ThrowHelper.cs
- WindowsListBox.cs
- SafeProcessHandle.cs
- StringDictionary.cs
- HttpResponseInternalWrapper.cs
- PaginationProgressEventArgs.cs
- OrthographicCamera.cs
- ShutDownListener.cs
- OrderByBuilder.cs
- DiffuseMaterial.cs
- InfoCardX509Validator.cs
- precedingquery.cs
- CommonRemoteMemoryBlock.cs
- DbConnectionStringCommon.cs
- StringCollectionEditor.cs
- ItemContainerPattern.cs
- LocalizabilityAttribute.cs
- AttachedAnnotationChangedEventArgs.cs
- CodeExpressionRuleDeclaration.cs
- NegatedCellConstant.cs
- StrokeSerializer.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- DataServiceCollectionOfT.cs
- UInt64.cs
- RuntimeWrappedException.cs
- MessageHeader.cs
- Size.cs
- hresults.cs
- Rotation3D.cs
- Compiler.cs
- ActiveXHelper.cs
- CancellationTokenRegistration.cs
- Int64Converter.cs
- PasswordBox.cs
- RankException.cs
- SiteOfOriginContainer.cs
- DispatcherOperation.cs
- Matrix3DConverter.cs
- UnmanagedMemoryStream.cs
- PrivateFontCollection.cs
- WindowsScrollBar.cs
- RegexGroupCollection.cs
- CounterNameConverter.cs
- DataGridViewRowHeaderCell.cs
- JapaneseLunisolarCalendar.cs
- GridToolTip.cs
- SizeChangedEventArgs.cs
- Visual3DCollection.cs
- GlobalEventManager.cs
- CharEntityEncoderFallback.cs
- SafeArrayTypeMismatchException.cs
- ReceiveContext.cs
- SerializationSectionGroup.cs
- UrlMappingCollection.cs
- SystemResourceHost.cs
- TileBrush.cs
- DbConnectionHelper.cs
- XmlSchemaSimpleTypeList.cs
- wmiprovider.cs
- SelectionRange.cs
- RowType.cs
- Vector3dCollection.cs
- Brushes.cs
- DbConnectionPoolIdentity.cs
- BatchStream.cs
- GAC.cs
- XmlNodeList.cs
- SelectionHighlightInfo.cs
- MobileCategoryAttribute.cs
- DiagnosticsConfiguration.cs
- TextServicesHost.cs
- HtmlEmptyTagControlBuilder.cs
- CollectionContainer.cs
- PlanCompilerUtil.cs
- RectAnimationBase.cs
- TabletDevice.cs
- XmlIterators.cs
- MetaDataInfo.cs