HttpBinding.ConfigureTransportBindingElement Property
Gets or sets the delegate which configures the HttpTransportBindingElement that this binding creates.
Namespace: System.Web.Http.SelfHost.Channels
Assembly: System.Web.Http.SelfHost (in System.Web.Http.SelfHost.dll)
Syntax
'Declaration
Public Property ConfigureTransportBindingElement As Action(Of HttpTransportBindingElement)
Get
Set
'Usage
Dim instance As HttpBinding
Dim value As Action(Of HttpTransportBindingElement)
value = instance.ConfigureTransportBindingElement
instance.ConfigureTransportBindingElement = value
public Action<HttpTransportBindingElement> ConfigureTransportBindingElement { get; set; }
public:
property Action<HttpTransportBindingElement^>^ ConfigureTransportBindingElement {
Action<HttpTransportBindingElement^>^ get ();
void set (Action<HttpTransportBindingElement^>^ value);
}
member ConfigureTransportBindingElement : Action<HttpTransportBindingElement> with get, set
function get ConfigureTransportBindingElement () : Action<HttpTransportBindingElement>
function set ConfigureTransportBindingElement (value : Action<HttpTransportBindingElement>)
Property Value
Type: System.Action<HttpTransportBindingElement>
A delegate to configure the HttpTransportBindingElement.