OperationMessageCollection.Flow プロパティ

定義

OperationMessageCollection でサポートされる伝送の種類を取得します。

public:
 property System::Web::Services::Description::OperationFlow Flow { System::Web::Services::Description::OperationFlow get(); };
public System.Web.Services.Description.OperationFlow Flow { get; }
member this.Flow : System.Web.Services.Description.OperationFlow
Public ReadOnly Property Flow As OperationFlow

プロパティ値

OperationFlow 値のいずれか 1 つ。 既定値は、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();
}
// Displays the properties of the OperationMessageCollection.
public static void DisplayFlowInputOutput( OperationMessageCollection
   myOperationMessageCollection, string myOperation)
{
   Console.WriteLine("After " + myOperation + ":");
   Console.WriteLine("Flow : " + myOperationMessageCollection.Flow);
   Console.WriteLine("The first occurrence of operation Input " +
      "in the collection " + myOperationMessageCollection.Input);
   Console.WriteLine("The first occurrence of operation Output " +
      "in the collection " + myOperationMessageCollection.Output);
   Console.WriteLine();
}
   ' Displays the properties of the OperationMessageCollection.
   Public Shared Sub DisplayFlowInputOutput(myOperationMessageCollection As  _
      OperationMessageCollection, myOperation As String)

      Console.WriteLine("After " & myOperation.ToString() & ":")
      Console.WriteLine("Flow : " & _
         myOperationMessageCollection.Flow.ToString())
      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 " &  myOperationMessageCollection.Output.ToString())
      Console.WriteLine()
   End Sub
End Class

適用対象