Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Channels / CustomBinding.cs / 1 / CustomBinding.cs
//------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------------------------
namespace System.ServiceModel.Channels
{
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Configuration;
using System.Globalization;
using System.ServiceModel.Configuration;
using System.Net.Security;
using System.ServiceModel.Security;
public class CustomBinding : Binding
{
BindingElementCollection bindingElements = new BindingElementCollection();
public CustomBinding()
: base()
{
}
public CustomBinding(string configurationName)
{
ApplyConfiguration(configurationName);
}
public CustomBinding(params BindingElement[] bindingElementsInTopDownChannelStackOrder)
: base()
{
if (bindingElementsInTopDownChannelStackOrder == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("bindingElements");
}
foreach (BindingElement element in bindingElementsInTopDownChannelStackOrder)
{
this.bindingElements.Add(element);
}
}
public CustomBinding(string name, string ns, params BindingElement[] bindingElementsInTopDownChannelStackOrder)
: base(name, ns)
{
if (bindingElementsInTopDownChannelStackOrder == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("bindingElements");
}
foreach (BindingElement element in bindingElementsInTopDownChannelStackOrder)
{
this.bindingElements.Add(element);
}
}
public CustomBinding(IEnumerable bindingElementsInTopDownChannelStackOrder)
{
if (bindingElementsInTopDownChannelStackOrder == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("bindingElements");
}
foreach (BindingElement element in bindingElementsInTopDownChannelStackOrder)
{
this.bindingElements.Add(element);
}
}
internal CustomBinding(BindingElementCollection bindingElements)
: base()
{
if (bindingElements == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("bindingElements");
}
for (int i = 0; i < bindingElements.Count; i++)
{
this.bindingElements.Add(bindingElements[i]);
}
}
public CustomBinding(Binding binding)
: this(binding, SafeCreateBindingElements(binding))
{
}
static BindingElementCollection SafeCreateBindingElements(Binding binding)
{
if (binding == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("binding");
}
return binding.CreateBindingElements();
}
internal CustomBinding(Binding binding, BindingElementCollection elements)
{
if (binding == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("binding");
}
if (elements == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("elements");
}
this.Name = binding.Name;
this.Namespace = binding.Namespace;
this.CloseTimeout = binding.CloseTimeout;
this.OpenTimeout = binding.OpenTimeout;
this.ReceiveTimeout = binding.ReceiveTimeout;
this.SendTimeout = binding.SendTimeout;
for (int i = 0; i < elements.Count; i++)
{
bindingElements.Add(elements[i]);
}
}
public BindingElementCollection Elements
{
get
{
return bindingElements;
}
}
public override BindingElementCollection CreateBindingElements()
{
return this.bindingElements.Clone();
}
void ApplyConfiguration(string configurationName)
{
CustomBindingCollectionElement section = CustomBindingCollectionElement.GetBindingCollectionElement();
CustomBindingElement element = section.Bindings[configurationName];
if (element == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ConfigurationErrorsException(
SR.GetString(SR.ConfigInvalidBindingConfigurationName,
configurationName,
ConfigurationStrings.CustomBindingCollectionElementName)));
}
else
{
element.ApplyConfiguration(this);
}
}
public override string Scheme
{
get
{
TransportBindingElement transport = bindingElements.Find();
if (transport == null)
{
return String.Empty;
}
return transport.Scheme;
}
}
}
}
// 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
- RelationshipWrapper.cs
- DbProviderConfigurationHandler.cs
- DataMisalignedException.cs
- SubqueryRules.cs
- LinqDataSource.cs
- SafeArrayTypeMismatchException.cs
- ParentUndoUnit.cs
- ValidatingPropertiesEventArgs.cs
- UseLicense.cs
- Color.cs
- EventLogPermissionEntry.cs
- IpcServerChannel.cs
- MaterialCollection.cs
- DefaultMemberAttribute.cs
- EtwTrace.cs
- FormatConvertedBitmap.cs
- DataListItem.cs
- itemelement.cs
- HostedElements.cs
- SqlConnectionFactory.cs
- InkCollectionBehavior.cs
- BypassElement.cs
- SkewTransform.cs
- BinHexDecoder.cs
- DataGridViewCheckBoxCell.cs
- OperatingSystem.cs
- EntityDesignPluralizationHandler.cs
- Latin1Encoding.cs
- PropertyDescriptor.cs
- Executor.cs
- RubberbandSelector.cs
- VariantWrapper.cs
- AlphabeticalEnumConverter.cs
- RuntimeHelpers.cs
- NullToBooleanConverter.cs
- VisualTarget.cs
- TemplateControlCodeDomTreeGenerator.cs
- ScriptControlDescriptor.cs
- WebPartConnectionsConnectVerb.cs
- RangeValidator.cs
- DataObjectFieldAttribute.cs
- DbConnectionStringBuilder.cs
- TabControlDesigner.cs
- StructuredType.cs
- RtfFormatStack.cs
- CompiledRegexRunner.cs
- DataTableCollection.cs
- WindowsAuthenticationEventArgs.cs
- SimpleHandlerBuildProvider.cs
- SafeMILHandle.cs
- XmlQualifiedNameTest.cs
- SoapObjectWriter.cs
- CompositeCollection.cs
- NullableIntSumAggregationOperator.cs
- ChildDocumentBlock.cs
- NameValueFileSectionHandler.cs
- HtmlToClrEventProxy.cs
- StorageEntityContainerMapping.cs
- GiveFeedbackEvent.cs
- SrgsText.cs
- ScriptDescriptor.cs
- BaseContextMenu.cs
- OutputScope.cs
- CalendarAutoFormat.cs
- ArgumentDirectionHelper.cs
- UserPreferenceChangingEventArgs.cs
- FormViewRow.cs
- DataSetUtil.cs
- EventLogPermissionAttribute.cs
- DelegatingConfigHost.cs
- SafeCertificateContext.cs
- ExclusiveTcpTransportManager.cs
- UnsafeNativeMethods.cs
- WhitespaceRule.cs
- StringOutput.cs
- ButtonFieldBase.cs
- SyndicationCategory.cs
- DbTransaction.cs
- BitmapFrameDecode.cs
- ExtensionDataReader.cs
- StretchValidation.cs
- DrawingImage.cs
- DetailsViewRowCollection.cs
- PlainXmlWriter.cs
- XmlSchemaComplexContentRestriction.cs
- ObjectDataSourceDisposingEventArgs.cs
- CultureTable.cs
- Vector.cs
- ChildDocumentBlock.cs
- ReachPrintTicketSerializer.cs
- DESCryptoServiceProvider.cs
- TypeReference.cs
- WorkItem.cs
- TreeNodeCollection.cs
- ForwardPositionQuery.cs
- Int16AnimationBase.cs
- Form.cs
- FixedTextContainer.cs
- AddInAdapter.cs
- Calendar.cs