OperationMessageCollection::Flow Property
.NET Framework (current version)
Gets the type of transmission supported by the OperationMessageCollection.
Assembly: System.Web.Services (in System.Web.Services.dll)
Property Value
Type: System.Web.Services.Description::OperationFlowOne of the OperationFlow values. The default is SolicitResponse.
// Displays the properties of the OperationMessageCollection. void DisplayFlowInputOutput( OperationMessageCollection^ myOperationMessageCollection, String^ myOperation ) { Console::WriteLine( "After {0}:", myOperation ); Console::WriteLine( "Flow : {0}", myOperationMessageCollection->Flow ); Console::WriteLine( "The first occurrence of operation Input in the collection {0}", myOperationMessageCollection->Input ); Console::WriteLine( "The first occurrence of operation Output in the collection {0}", myOperationMessageCollection->Output ); Console::WriteLine(); }
.NET Framework
Available since 1.1
Available since 1.1
Show: