WorkflowInstanceManagementBehavior.NamedPipeControlEndpointBinding Property

Definition

Gets the binding for the workflow instance control endpoint when the net.pipe protocol is used.

public:
 static property System::ServiceModel::Channels::Binding ^ NamedPipeControlEndpointBinding { System::ServiceModel::Channels::Binding ^ get(); };
public static System.ServiceModel.Channels.Binding NamedPipeControlEndpointBinding { get; }
static member NamedPipeControlEndpointBinding : System.ServiceModel.Channels.Binding
Public Shared ReadOnly Property NamedPipeControlEndpointBinding As Binding

Property Value

The binding for the workflow instance control endpoint.

Remarks

The binding is automatically created based on the protocols configured for the service host's base address. Messages sent to the workflow instance control endpoint do not contain any personally identifiable information and therefore it need not be encrypted. Messages sent to the workflow control endpoint need to contain the user identity to use for authorization. When the net.pipe protocol is enabled, the NetNamedPipeBinding is used with the following settings.

  1. Transaction flow is enabled.

  2. Security mode is set to Transport.

  3. Transport security level is set to Sign.

  4. Windows client credentials are used.

Applies to