DispatchRuntime.OperationSelector Property

Definition

Gets or sets the IDispatchOperationSelector object that controls the selection of a destination DispatchOperation for a particular message.

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

Property Value

The IDispatchOperationSelector object.

Remarks

Use the OperationSelector property to decide which operation receives a given message. The default operation selector returns the value of the action header for the message, which is used as the key to locate the correct DispatchOperation. If no matching operation is found, the invocation is dispatched to the return value from the UnhandledDispatchOperation property.

Applies to