SoapProtocolImporter.IsOperationFlowSupported(OperationFlow) Method

Definition

Determines whether the current operation's operation flow is supported.

protected:
 override bool IsOperationFlowSupported(System::Web::Services::Description::OperationFlow flow);
protected override bool IsOperationFlowSupported (System.Web.Services.Description.OperationFlow flow);
override this.IsOperationFlowSupported : System.Web.Services.Description.OperationFlow -> bool
Protected Overrides Function IsOperationFlowSupported (flow As OperationFlow) As Boolean

Parameters

flow
OperationFlow

An OperationFlow enumeration value that represents a transmission pattern.

Returns

true if the current operation's operation flow is supported; otherwise false.

Remarks

The IsOperationFlowSupported method determines whether to generate a method for the current operation, as represented by the Operation property. This evaluation takes place for each operation in a binding for which a class is being generated. If a false value is returned, the UnsupportedOperationWarning method executes. A true value is returned only if the input value is OneWay or RequestResponse.

For more information, see the Flow property. The Messages property is of type OperationMessageCollection.

Applies to