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
- Configuration.cs
- BinaryParser.cs
- coordinatorscratchpad.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- TemplatePartAttribute.cs
- XmlStringTable.cs
- EmptyEnumerator.cs
- HtmlMeta.cs
- WindowsContainer.cs
- ProcessHostMapPath.cs
- FrameworkElement.cs
- WebPartUtil.cs
- MarkupExtensionParser.cs
- AssemblyUtil.cs
- PropertyEmitter.cs
- EntityDataReader.cs
- TextRunCache.cs
- UiaCoreApi.cs
- SplitContainer.cs
- UITypeEditor.cs
- TraceContextRecord.cs
- SqlCachedBuffer.cs
- QilTargetType.cs
- Int32AnimationUsingKeyFrames.cs
- LocalValueEnumerator.cs
- IgnoreFlushAndCloseStream.cs
- ProxyFragment.cs
- XmlSchemaException.cs
- TransformGroup.cs
- ByteViewer.cs
- VideoDrawing.cs
- ClientScriptItemCollection.cs
- XsltLibrary.cs
- PropertyNames.cs
- ResourceReferenceExpressionConverter.cs
- LinkButton.cs
- SchemaObjectWriter.cs
- ResourceManager.cs
- ServiceModelSecurityTokenTypes.cs
- AtomMaterializer.cs
- HtmlEncodedRawTextWriter.cs
- ClientReliableChannelBinder.cs
- CharacterMetricsDictionary.cs
- Vector3DCollectionConverter.cs
- ProtocolsConfiguration.cs
- Model3DGroup.cs
- UserPersonalizationStateInfo.cs
- Vector3D.cs
- HelpKeywordAttribute.cs
- WebPartDescriptionCollection.cs
- Rfc2898DeriveBytes.cs
- XmlAtomicValue.cs
- ComPlusTypeValidator.cs
- BaseProcessor.cs
- Missing.cs
- AutoGeneratedField.cs
- FormViewUpdatedEventArgs.cs
- TextAutomationPeer.cs
- PropertyValueChangedEvent.cs
- ListBoxItemAutomationPeer.cs
- ClosableStream.cs
- RegisteredDisposeScript.cs
- querybuilder.cs
- PageAsyncTask.cs
- DrawListViewItemEventArgs.cs
- iisPickupDirectory.cs
- OutputScopeManager.cs
- DictionaryKeyPropertyAttribute.cs
- ISessionStateStore.cs
- AnonymousIdentificationSection.cs
- FontFamily.cs
- TableLayoutColumnStyleCollection.cs
- COM2PropertyDescriptor.cs
- LicenseContext.cs
- ExpressionConverter.cs
- SqlDataSourceView.cs
- DrawingGroup.cs
- Timer.cs
- BitmapFrameDecode.cs
- NumericExpr.cs
- filewebresponse.cs
- NullableBoolConverter.cs
- IdSpace.cs
- TextTreeTextBlock.cs
- ListBoxChrome.cs
- StreamMarshaler.cs
- ExecutionContext.cs
- DataRowExtensions.cs
- ValidatorCompatibilityHelper.cs
- Decimal.cs
- RestClientProxyHandler.cs
- ScriptingScriptResourceHandlerSection.cs
- Repeater.cs
- filewebresponse.cs
- XslAstAnalyzer.cs
- DictionaryChange.cs
- ThreadStartException.cs
- WebContentFormatHelper.cs
- MetadataWorkspace.cs
- DocumentApplication.cs