ArgumentDirection Wyliczenie

Definicja

Określa kierunek przepływu danych dla elementu Argument.

public enum class ArgumentDirection
public enum ArgumentDirection
type ArgumentDirection = 
Public Enum ArgumentDirection
Dziedziczenie
ArgumentDirection

Pola

In 0

Element Argument reprezentujący przepływ danych do przepływu pracy lub działania.

InOut 2

Element Argument reprezentujący przepływ danych do i z przepływu pracy lub działania.

Out 1

Element Argument reprezentujący przepływ danych z przepływu pracy lub działania.

Przykłady

W tym przykładzie InArgument<T> tworzony jest typ String przy użyciu Create metody Argument klasy .

Argument a = Argument.Create(typeof(string), ArgumentDirection.In);  

Dotyczy