Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Channels / BindingContext.cs / 1 / BindingContext.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.ServiceModel.Channels { using System.ServiceModel.Description; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Globalization; using System.Text; public class BindingContext { CustomBinding binding; BindingParameterCollection bindingParameters; Uri listenUriBaseAddress; ListenUriMode listenUriMode; string listenUriRelativeAddress; BindingElementCollection remainingBindingElements; // kept to ensure each BE builds itself once public BindingContext(CustomBinding binding, BindingParameterCollection parameters) : this(binding, parameters, null, string.Empty, ListenUriMode.Explicit) { } public BindingContext(CustomBinding binding, BindingParameterCollection parameters, Uri listenUriBaseAddress, string listenUriRelativeAddress, ListenUriMode listenUriMode) { if (binding == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("binding"); } if (listenUriRelativeAddress == null) { listenUriRelativeAddress = string.Empty; } if (!ListenUriModeHelper.IsDefined(listenUriMode)) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("listenUriMode")); } Initialize(binding, binding.Elements, parameters, listenUriBaseAddress, listenUriRelativeAddress, listenUriMode); } BindingContext(CustomBinding binding, BindingElementCollection remainingBindingElements, BindingParameterCollection parameters, Uri listenUriBaseAddress, string listenUriRelativeAddress, ListenUriMode listenUriMode) { Initialize(binding, remainingBindingElements, parameters, listenUriBaseAddress, listenUriRelativeAddress, listenUriMode); } void Initialize(CustomBinding binding, BindingElementCollection remainingBindingElements, BindingParameterCollection parameters, Uri listenUriBaseAddress, string listenUriRelativeAddress, ListenUriMode listenUriMode) { this.binding = binding; this.remainingBindingElements = new BindingElementCollection(remainingBindingElements); this.bindingParameters = new BindingParameterCollection(parameters); this.listenUriBaseAddress = listenUriBaseAddress; this.listenUriRelativeAddress = listenUriRelativeAddress; this.listenUriMode = listenUriMode; } public CustomBinding Binding { get { return this.binding; } } public BindingParameterCollection BindingParameters { get { return this.bindingParameters; } } public Uri ListenUriBaseAddress { get { return this.listenUriBaseAddress; } set { this.listenUriBaseAddress = value; } } public ListenUriMode ListenUriMode { get { return this.listenUriMode; } set { this.listenUriMode = value; } } public string ListenUriRelativeAddress { get { return this.listenUriRelativeAddress; } set { this.listenUriRelativeAddress = value; } } public BindingElementCollection RemainingBindingElements { get { return this.remainingBindingElements; } } public IChannelFactoryBuildInnerChannelFactory () { return this.RemoveNextElement().BuildChannelFactory (this); } public IChannelListener BuildInnerChannelListener () where TChannel : class, IChannel { return this.RemoveNextElement().BuildChannelListener (this); } public bool CanBuildInnerChannelFactory () { BindingContext clone = this.Clone(); return clone.RemoveNextElement().CanBuildChannelFactory (clone); } public bool CanBuildInnerChannelListener () where TChannel : class, IChannel { BindingContext clone = this.Clone(); return clone.RemoveNextElement().CanBuildChannelListener (clone); } public T GetInnerProperty () where T : class { if (this.remainingBindingElements.Count == 0) { return null; } else { BindingContext clone = this.Clone(); return clone.RemoveNextElement().GetProperty (clone); } } public BindingContext Clone() { return new BindingContext(this.binding, this.remainingBindingElements, this.bindingParameters, this.listenUriBaseAddress, this.listenUriRelativeAddress, this.listenUriMode); } BindingElement RemoveNextElement() { BindingElement element = this.remainingBindingElements.Remove (); if (element != null) return element; throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString( SR.NoChannelBuilderAvailable, this.binding.Name, this.binding.Namespace))); } internal void ValidateBindingElementsConsumed() { if (this.RemainingBindingElements.Count != 0) { StringBuilder builder = new StringBuilder(); foreach (BindingElement bindingElement in this.RemainingBindingElements) { if (builder.Length > 0) { builder.Append(CultureInfo.CurrentCulture.TextInfo.ListSeparator); builder.Append(" "); } string typeString = bindingElement.GetType().ToString(); builder.Append(typeString.Substring(typeString.LastIndexOf('.') + 1)); } throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.NotAllBindingElementsBuilt, builder.ToString()))); } } } } // 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
- ModuleConfigurationInfo.cs
- QueryFunctions.cs
- X509Certificate2.cs
- SystemUdpStatistics.cs
- ToolboxItemImageConverter.cs
- StubHelpers.cs
- XmlSchemaAppInfo.cs
- LayoutSettings.cs
- WebResourceUtil.cs
- ChildTable.cs
- ArgumentException.cs
- EventSourceCreationData.cs
- TabItem.cs
- SQLByteStorage.cs
- SimpleExpression.cs
- MessageHeaderDescriptionCollection.cs
- StoragePropertyMapping.cs
- Object.cs
- OutputBuffer.cs
- IgnoreFileBuildProvider.cs
- CheckBox.cs
- DateTimeValueSerializerContext.cs
- InternalDuplexChannelFactory.cs
- ControlAdapter.cs
- ReferentialConstraint.cs
- MailAddressParser.cs
- FilePrompt.cs
- TransformValueSerializer.cs
- DataGridViewDataErrorEventArgs.cs
- OptimisticConcurrencyException.cs
- CompressionTracing.cs
- BamlResourceDeserializer.cs
- MoveSizeWinEventHandler.cs
- ExtentKey.cs
- ExpressionBinding.cs
- PresentationTraceSources.cs
- ISessionStateStore.cs
- NullToBooleanConverter.cs
- QilValidationVisitor.cs
- SqlNodeAnnotations.cs
- FormViewUpdatedEventArgs.cs
- HostProtectionPermission.cs
- IsolatedStoragePermission.cs
- DesignerToolStripControlHost.cs
- GiveFeedbackEvent.cs
- FixedSOMElement.cs
- ContentHostHelper.cs
- DynamicExpression.cs
- TypeUtils.cs
- ProgressBarBrushConverter.cs
- XmlLangPropertyAttribute.cs
- Point.cs
- _TimerThread.cs
- Component.cs
- _ConnectStream.cs
- MulticastDelegate.cs
- MetabaseReader.cs
- UnsafeNativeMethods.cs
- ConnectionPoint.cs
- FrameworkContentElement.cs
- ToolStripContentPanel.cs
- FSWPathEditor.cs
- InstalledVoice.cs
- AsyncResult.cs
- TypedReference.cs
- PolyLineSegment.cs
- LocalFileSettingsProvider.cs
- X509IssuerSerialKeyIdentifierClause.cs
- SocketPermission.cs
- DataTablePropertyDescriptor.cs
- EventBuilder.cs
- LiteralText.cs
- AssemblyCache.cs
- MultiTrigger.cs
- PageContentCollection.cs
- MultipleViewPattern.cs
- VisualTreeUtils.cs
- DictionarySectionHandler.cs
- WindowsListViewGroupHelper.cs
- SafeRegistryHandle.cs
- NavigationFailedEventArgs.cs
- ellipse.cs
- TagMapCollection.cs
- TableAdapterManagerHelper.cs
- Boolean.cs
- AggregateNode.cs
- PaperSource.cs
- DrawingAttributeSerializer.cs
- XmlStreamedByteStreamReader.cs
- QueueProcessor.cs
- Sql8ExpressionRewriter.cs
- ValidationEventArgs.cs
- MessageBox.cs
- FunctionQuery.cs
- BigInt.cs
- DockPanel.cs
- PrintControllerWithStatusDialog.cs
- SamlSecurityTokenAuthenticator.cs
- DirectoryObjectSecurity.cs
- DbDataReader.cs