Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / NetFx35 / System.ServiceModel.Web / System / ServiceModel / Web / WebChannelFactory.cs / 2 / WebChannelFactory.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Web { using System.IO; using System.Collections.Generic; using System.ServiceModel; using System.ServiceModel.Activation; using System.ServiceModel.Channels; using System.ServiceModel.Description; using System.Diagnostics.CodeAnalysis; using System.Configuration; using System.Net; using System.Web; using System.Globalization; public class WebChannelFactory: ChannelFactory where TChannel : class { public WebChannelFactory() : base() { } public WebChannelFactory(Binding binding) : base(binding) { } public WebChannelFactory(ServiceEndpoint endpoint) : base(endpoint) { } [SuppressMessage("Microsoft.Design", "CA1057:StringUriOverloadsCallSystemUriOverloads", Justification = "This is a configuration string and not a network location")] public WebChannelFactory(string endpointConfigurationName) : base(endpointConfigurationName) { } public WebChannelFactory(Type channelType) : base(channelType) { } public WebChannelFactory(Uri remoteAddress) : this(GetDefaultBinding(remoteAddress), remoteAddress) { } public WebChannelFactory(Binding binding, Uri remoteAddress) : base(binding, (remoteAddress != null) ? new EndpointAddress(remoteAddress) : null) { } public WebChannelFactory(string endpointConfigurationName, Uri remoteAddress) : base(endpointConfigurationName, (remoteAddress != null) ? new EndpointAddress(remoteAddress) : null) { } protected override void OnOpening() { if (this.Endpoint == null) { return; } // if the binding is missing, set up a default binding if (this.Endpoint.Binding == null && this.Endpoint.Address != null) { this.Endpoint.Binding = GetDefaultBinding(this.Endpoint.Address.Uri); } WebServiceHost.SetRawContentTypeMapperIfNecessary(this.Endpoint, false); if (this.Endpoint.Behaviors.Find () == null) { this.Endpoint.Behaviors.Add(new WebHttpBehavior()); } base.OnOpening(); } static Binding GetDefaultBinding(Uri remoteAddress) { if (remoteAddress == null || (remoteAddress.Scheme != Uri.UriSchemeHttp && remoteAddress.Scheme != Uri.UriSchemeHttps)) { return null; } if (remoteAddress.Scheme == Uri.UriSchemeHttp) { return new WebHttpBinding(); } else { WebHttpBinding result = new WebHttpBinding(); result.Security.Mode = WebHttpSecurityMode.Transport; result.Security.Transport.ClientCredentialType = HttpClientCredentialType.None; return result; } } } } // 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
- SByte.cs
- BitmapEncoder.cs
- SplitContainer.cs
- HtmlInputText.cs
- DataServiceQueryOfT.cs
- CoreSwitches.cs
- DesignerRegion.cs
- ListViewItem.cs
- EventListenerClientSide.cs
- SchemaImporterExtensionsSection.cs
- DynamicActivityXamlReader.cs
- XmlLanguage.cs
- BindToObject.cs
- DbBuffer.cs
- UITypeEditor.cs
- TextRangeProviderWrapper.cs
- LayoutExceptionEventArgs.cs
- X509InitiatorCertificateClientElement.cs
- Translator.cs
- DataObjectPastingEventArgs.cs
- TrackingStringDictionary.cs
- DataObjectEventArgs.cs
- LowerCaseStringConverter.cs
- OptimisticConcurrencyException.cs
- XmlUtilWriter.cs
- MarshalDirectiveException.cs
- DataConnectionHelper.cs
- ComponentCollection.cs
- mediaeventshelper.cs
- ActionMessageFilter.cs
- FlowPosition.cs
- ContainerControl.cs
- VarInfo.cs
- IfAction.cs
- SessionState.cs
- RegexFCD.cs
- XamlTreeBuilderBamlRecordWriter.cs
- ClaimSet.cs
- MDIControlStrip.cs
- DesignColumnCollection.cs
- DbProviderFactories.cs
- HierarchicalDataSourceControl.cs
- BamlLocalizableResourceKey.cs
- LayoutEditorPart.cs
- Imaging.cs
- ProxySimple.cs
- TaiwanLunisolarCalendar.cs
- InputLanguageManager.cs
- OrderedDictionary.cs
- objectresult_tresulttype.cs
- ProjectionCamera.cs
- SearchExpression.cs
- DateTimePickerDesigner.cs
- ChtmlPageAdapter.cs
- EntityProviderFactory.cs
- UnicastIPAddressInformationCollection.cs
- StickyNoteHelper.cs
- UnsafeNativeMethodsPenimc.cs
- PrintPreviewDialog.cs
- PropertyValueChangedEvent.cs
- QueryAccessibilityHelpEvent.cs
- SqlDataSourceStatusEventArgs.cs
- XPathCompileException.cs
- PolyQuadraticBezierSegment.cs
- DataSvcMapFile.cs
- Fonts.cs
- RequiredAttributeAttribute.cs
- BitmapEffectCollection.cs
- VirtualPath.cs
- GroupQuery.cs
- EncoderFallback.cs
- ClientSettings.cs
- _IPv4Address.cs
- DesignerAdRotatorAdapter.cs
- BatchServiceHost.cs
- HijriCalendar.cs
- SelectionEditingBehavior.cs
- IisTraceWebEventProvider.cs
- InteropAutomationProvider.cs
- UInt32.cs
- LinkedResource.cs
- ProfilePropertySettingsCollection.cs
- TreeWalker.cs
- DynamicUpdateCommand.cs
- EqualityComparer.cs
- MessageDecoder.cs
- Cloud.cs
- ConfigurationStrings.cs
- HtmlHead.cs
- DataBoundLiteralControl.cs
- MethodMessage.cs
- ExpressionBuilder.cs
- UntypedNullExpression.cs
- ObjectListTitleAttribute.cs
- XmlSchemaSimpleType.cs
- PerformanceCounterPermissionEntry.cs
- StrokeRenderer.cs
- LabelLiteral.cs
- HtmlWindow.cs
- IndexerNameAttribute.cs