SoapProtocolImporter.IsOperationFlowSupported(OperationFlow) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.