OperationMessageCollection::Flow Property

 

Gets the type of transmission supported by the OperationMessageCollection.

Namespace:   System.Web.Services.Description
Assembly:  System.Web.Services (in System.Web.Services.dll)

public:
property OperationFlow Flow {
	OperationFlow get();
}

Property Value

Type: System.Web.Services.Description::OperationFlow

One 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
Return to top
Show: