WorkflowServiceAttributes.AddressFilterMode Property

Definition

Gets or sets the AddressFilterMode enumeration that is used by the dispatcher to route incoming messages to the correct endpoint.

public:
 property System::ServiceModel::AddressFilterMode AddressFilterMode { System::ServiceModel::AddressFilterMode get(); void set(System::ServiceModel::AddressFilterMode value); };
public System.ServiceModel.AddressFilterMode AddressFilterMode { get; set; }
member this.AddressFilterMode : System.ServiceModel.AddressFilterMode with get, set
Public Property AddressFilterMode As AddressFilterMode

Property Value

An AddressFilterMode enumeration value that is used by the dispatcher to route incoming messages to the correct endpoint.

Examples

The following example demonstrates how to access the AddressFilterMode property.

WorkflowServiceAttributes attributes = new WorkflowServiceAttributes();
attributes.AddressFilterMode = AddressFilterMode.Exact;
Dim attributes As New WorkflowServiceAttributes()
attributes.AddressFilterMode = AddressFilterMode.Exact

Remarks

The default value is AddressFilterMode.Exact.

Applies to