WorkflowInstanceManagementBehavior.HttpControlEndpointBinding Property

Definition

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

public:
 static property System::ServiceModel::Channels::Binding ^ HttpControlEndpointBinding { System::ServiceModel::Channels::Binding ^ get(); };
public static System.ServiceModel.Channels.Binding HttpControlEndpointBinding { get; }
static member HttpControlEndpointBinding : System.ServiceModel.Channels.Binding
Public Shared ReadOnly Property HttpControlEndpointBinding 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 HTTP protocol is enabled, the WebHttpBinding is used with the following settings.

  1. Transaction flow is enabled.

  2. Security mode is set to Message.

  3. Windows client credentials are used.

Applies to