You've already forked linux-packaging-mono
Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
179
external/referencesource/System.ServiceModel/System/ServiceModel/WSHttpContextBinding.cs
vendored
Normal file
179
external/referencesource/System.ServiceModel/System/ServiceModel/WSHttpContextBinding.cs
vendored
Normal file
@ -0,0 +1,179 @@
|
||||
//------------------------------------------------------------
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
//------------------------------------------------------------
|
||||
|
||||
namespace System.ServiceModel
|
||||
{
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.Net.Security;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.ServiceModel.Channels;
|
||||
using System.ServiceModel.Configuration;
|
||||
using System.ServiceModel.Security;
|
||||
|
||||
[TypeForwardedFrom("System.WorkflowServices, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
|
||||
public class WSHttpContextBinding : WSHttpBinding
|
||||
{
|
||||
ProtectionLevel contextProtectionLevel = ContextBindingElement.DefaultProtectionLevel;
|
||||
bool contextManagementEnabled = ContextBindingElement.DefaultContextManagementEnabled;
|
||||
|
||||
public WSHttpContextBinding()
|
||||
: base()
|
||||
{
|
||||
}
|
||||
|
||||
public WSHttpContextBinding(SecurityMode securityMode)
|
||||
: base(securityMode)
|
||||
{
|
||||
}
|
||||
|
||||
public WSHttpContextBinding(string configName)
|
||||
: base()
|
||||
{
|
||||
if (configName == null)
|
||||
{
|
||||
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("configName");
|
||||
}
|
||||
|
||||
this.ApplyConfiguration(configName);
|
||||
}
|
||||
|
||||
public WSHttpContextBinding(SecurityMode securityMode, bool reliableSessionEnabled)
|
||||
: base(securityMode, reliableSessionEnabled)
|
||||
{
|
||||
}
|
||||
|
||||
WSHttpContextBinding(WSHttpBinding wsHttpBinding)
|
||||
{
|
||||
WSHttpContextBindingPropertyTransferHelper helper = new WSHttpContextBindingPropertyTransferHelper();
|
||||
helper.InitializeFrom(wsHttpBinding);
|
||||
helper.SetBindingElementType(typeof(WSHttpContextBinding));
|
||||
helper.ApplyConfiguration(this);
|
||||
}
|
||||
|
||||
[DefaultValue(null)]
|
||||
public Uri ClientCallbackAddress
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
[DefaultValue(ContextBindingElement.DefaultContextManagementEnabled)]
|
||||
public bool ContextManagementEnabled
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.contextManagementEnabled;
|
||||
}
|
||||
set
|
||||
{
|
||||
this.contextManagementEnabled = value;
|
||||
}
|
||||
}
|
||||
|
||||
[DefaultValue(ContextBindingElement.DefaultProtectionLevel)]
|
||||
public ProtectionLevel ContextProtectionLevel
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.contextProtectionLevel;
|
||||
}
|
||||
set
|
||||
{
|
||||
if (!ProtectionLevelHelper.IsDefined(value))
|
||||
{
|
||||
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("value"));
|
||||
}
|
||||
this.contextProtectionLevel = value;
|
||||
}
|
||||
}
|
||||
|
||||
public override BindingElementCollection CreateBindingElements()
|
||||
{
|
||||
BindingElementCollection result;
|
||||
|
||||
if (this.AllowCookies)
|
||||
{
|
||||
try
|
||||
{
|
||||
// Passing AllowCookies=false to HttpTransportBinding means we don't want transport layer to manage
|
||||
// cookie containers. We are going to do this at the context channel level, because we need channel
|
||||
// level isolation as opposed to channel factory level isolation.
|
||||
|
||||
this.AllowCookies = false;
|
||||
result = base.CreateBindingElements();
|
||||
}
|
||||
finally
|
||||
{
|
||||
this.AllowCookies = true;
|
||||
}
|
||||
result.Insert(0, new ContextBindingElement(this.ContextProtectionLevel, ContextExchangeMechanism.HttpCookie, this.ClientCallbackAddress, this.ContextManagementEnabled));
|
||||
}
|
||||
else
|
||||
{
|
||||
result = base.CreateBindingElements();
|
||||
result.Insert(0, new ContextBindingElement(this.ContextProtectionLevel, ContextExchangeMechanism.ContextSoapHeader, this.ClientCallbackAddress, this.ContextManagementEnabled));
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
internal static new bool TryCreate(BindingElementCollection bindingElements, out Binding binding)
|
||||
{
|
||||
if (bindingElements == null)
|
||||
{
|
||||
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("bindingElements");
|
||||
}
|
||||
|
||||
binding = null;
|
||||
|
||||
ContextBindingElement contextBindingElement = bindingElements.Find<ContextBindingElement>();
|
||||
if (contextBindingElement != null)
|
||||
{
|
||||
BindingElementCollection bindingElementsWithoutContext = new BindingElementCollection(bindingElements);
|
||||
bindingElementsWithoutContext.Remove<ContextBindingElement>();
|
||||
Binding wsHttpBinding;
|
||||
if (WSHttpBinding.TryCreate(bindingElementsWithoutContext, out wsHttpBinding))
|
||||
{
|
||||
bool allowCookies = ((WSHttpBinding)wsHttpBinding).AllowCookies;
|
||||
if (allowCookies && contextBindingElement.ContextExchangeMechanism == ContextExchangeMechanism.HttpCookie
|
||||
|| !allowCookies && contextBindingElement.ContextExchangeMechanism == ContextExchangeMechanism.ContextSoapHeader)
|
||||
{
|
||||
WSHttpContextBinding contextBinding = new WSHttpContextBinding((WSHttpBinding)wsHttpBinding);
|
||||
contextBinding.ContextProtectionLevel = contextBindingElement.ProtectionLevel;
|
||||
contextBinding.ContextManagementEnabled = contextBindingElement.ContextManagementEnabled;
|
||||
binding = contextBinding;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return binding != null;
|
||||
}
|
||||
|
||||
void ApplyConfiguration(string configurationName)
|
||||
{
|
||||
WSHttpContextBindingCollectionElement section = WSHttpContextBindingCollectionElement.GetBindingCollectionElement();
|
||||
WSHttpContextBindingElement element = section.Bindings[configurationName];
|
||||
element.ApplyConfiguration(this);
|
||||
}
|
||||
|
||||
class WSHttpContextBindingPropertyTransferHelper : WSHttpBindingElement
|
||||
{
|
||||
Type bindingElementType = typeof(WSHttpBinding);
|
||||
|
||||
protected override Type BindingElementType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.bindingElementType;
|
||||
}
|
||||
}
|
||||
|
||||
public void SetBindingElementType(Type bindingElementType)
|
||||
{
|
||||
this.bindingElementType = bindingElementType;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user