ActivityContext.GetValue Metodo

Definizione

Ottiene il valore di un argomento.

Overload

GetValue(Argument)

Ottiene il valore del Argument specificato.

GetValue(RuntimeArgument)

Ottiene il valore del RuntimeArgument specificato.

GetValue<T>(InArgument<T>)

Ottiene il valore del InArgument<T> specificato.

GetValue<T>(InOutArgument<T>)

Ottiene il valore del InOutArgument<T> specificato.

GetValue<T>(LocationReference)

Ottiene il valore del LocationReference specificato.

GetValue<T>(OutArgument<T>)

Ottiene il valore del OutArgument<T> specificato.

GetValue(Argument)

Ottiene il valore del Argument specificato.

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.

Restituisce

Valore dell'argomento.

Si applica a

GetValue(RuntimeArgument)

Ottiene il valore del RuntimeArgument specificato.

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.

Restituisce

Valore dell'argomento.

Si applica a

GetValue<T>(InArgument<T>)

Ottiene il valore del InArgument<T> specificato.

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

Il tipo di argomento.

Parametri

argument
InArgument<T>

Argomento da esaminare.

Restituisce

T

Valore dell'argomento.

Si applica a

GetValue<T>(InOutArgument<T>)

Ottiene il valore del InOutArgument<T> specificato.

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

Il tipo di argomento.

Parametri

argument
InOutArgument<T>

Argomento da esaminare.

Restituisce

T

Valore dell'argomento.

Si applica a

GetValue<T>(LocationReference)

Ottiene il valore del LocationReference specificato.

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 di valore.

Parametri

locationReference
LocationReference

Il percorso a cui si fa riferimento da controllare.

Restituisce

T

Valore del percorso cui si fa riferimento.

Si applica a

GetValue<T>(OutArgument<T>)

Ottiene il valore del OutArgument<T> specificato.

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

Il tipo di argomento.

Parametri

argument
OutArgument<T>

Argomento da esaminare.

Restituisce

T

Valore dell'argomento.

Si applica a