ActivityContext.GetValue Metodo

Definizione

Ottiene il valore di un argomento.

Overload

Nome Descrizione
GetValue(Argument)

Ottiene il valore dell'oggetto specificato Argument.

GetValue(RuntimeArgument)

Ottiene il valore dell'oggetto specificato RuntimeArgument.

GetValue<T>(InArgument<T>)

Ottiene il valore dell'oggetto specificato InArgument<T>.

GetValue<T>(InOutArgument<T>)

Ottiene il valore dell'oggetto specificato InOutArgument<T>.

GetValue<T>(LocationReference)

Ottiene il valore in corrispondenza dell'oggetto specificato LocationReference.

GetValue<T>(OutArgument<T>)

Ottiene il valore dell'oggetto specificato OutArgument<T>.

GetValue(Argument)

Ottiene il valore dell'oggetto specificato Argument.

public:
 System::Object ^ GetValue(System::Activities::Argument ^ argument);
public object GetValue(System.Activities.Argument argument);
member this.GetValue : System.Activities.Argument -> obj
Public Function GetValue (argument As Argument) As Object

Parametri

argument
Argument

Argomento da esaminare.

Valori restituiti

Valore dell'argomento.

Si applica a

GetValue(RuntimeArgument)

Ottiene il valore dell'oggetto specificato RuntimeArgument.

public:
 System::Object ^ GetValue(System::Activities::RuntimeArgument ^ runtimeArgument);
public object GetValue(System.Activities.RuntimeArgument runtimeArgument);
member this.GetValue : System.Activities.RuntimeArgument -> obj
Public Function GetValue (runtimeArgument As RuntimeArgument) As Object

Parametri

runtimeArgument
RuntimeArgument

Argomento da esaminare.

Valori restituiti

Valore dell'argomento.

Si applica a

GetValue<T>(InArgument<T>)

Ottiene il valore dell'oggetto specificato InArgument<T>.

public:
generic <typename T>
 T GetValue(System::Activities::InArgument<T> ^ argument);
public T GetValue<T>(System.Activities.InArgument<T> argument);
member this.GetValue : System.Activities.InArgument<'T> -> 'T
Public Function GetValue(Of T) (argument As InArgument(Of T)) As T

Parametri di tipo

T

Tipo dell'argomento.

Parametri

argument
InArgument<T>

Argomento da esaminare.

Valori restituiti

T

Valore dell'argomento.

Si applica a

GetValue<T>(InOutArgument<T>)

Ottiene il valore dell'oggetto specificato InOutArgument<T>.

public:
generic <typename T>
 T GetValue(System::Activities::InOutArgument<T> ^ argument);
public T GetValue<T>(System.Activities.InOutArgument<T> argument);
member this.GetValue : System.Activities.InOutArgument<'T> -> 'T
Public Function GetValue(Of T) (argument As InOutArgument(Of T)) As T

Parametri di tipo

T

Tipo dell'argomento.

Parametri

argument
InOutArgument<T>

Argomento da esaminare.

Valori restituiti

T

Valore dell'argomento.

Si applica a

GetValue<T>(LocationReference)

Ottiene il valore in corrispondenza dell'oggetto specificato LocationReference.

public:
generic <typename T>
 T GetValue(System::Activities::LocationReference ^ locationReference);
public T GetValue<T>(System.Activities.LocationReference locationReference);
member this.GetValue : System.Activities.LocationReference -> 'T
Public Function GetValue(Of T) (locationReference As LocationReference) As T

Parametri di tipo

T

Tipo del valore.

Parametri

locationReference
LocationReference

Posizione a cui si fa riferimento da controllare.

Valori restituiti

T

Valore della posizione a cui si fa riferimento.

Si applica a

GetValue<T>(OutArgument<T>)

Ottiene il valore dell'oggetto specificato OutArgument<T>.

public:
generic <typename T>
 T GetValue(System::Activities::OutArgument<T> ^ argument);
public T GetValue<T>(System.Activities.OutArgument<T> argument);
member this.GetValue : System.Activities.OutArgument<'T> -> 'T
Public Function GetValue(Of T) (argument As OutArgument(Of T)) As T

Parametri di tipo

T

Tipo dell'argomento.

Parametri

argument
OutArgument<T>

Argomento da esaminare.

Valori restituiti

T

Valore dell'argomento.

Si applica a