ActivityBind.GetRuntimeValue Method

Definition

Gets the runtime value of the binding.

Overloads

GetRuntimeValue(Activity)

Gets the Object representing the run-time value of this ActivityBind.

GetRuntimeValue(Activity, Type)

Gets the Object representing the run-time value of this ActivityBind.

Remarks

Returns the run-time value.

Caution

This method throws an exception if this bind is a binding to a method and a TargetType is not provided.

GetRuntimeValue(Activity)

Gets the Object representing the run-time value of this ActivityBind.

public:
 System::Object ^ GetRuntimeValue(System::Workflow::ComponentModel::Activity ^ activity);
public object GetRuntimeValue (System.Workflow.ComponentModel.Activity activity);
member this.GetRuntimeValue : System.Workflow.ComponentModel.Activity -> obj
Public Function GetRuntimeValue (activity As Activity) As Object

Parameters

activity
Activity

The Activity that owns this bind.

Returns

The Object representing the run-time value of this ActivityBind.

Exceptions

activity is a null reference (Nothing in Visual Basic).

Applies to

GetRuntimeValue(Activity, Type)

Gets the Object representing the run-time value of this ActivityBind.

public:
 System::Object ^ GetRuntimeValue(System::Workflow::ComponentModel::Activity ^ activity, Type ^ targetType);
public object GetRuntimeValue (System.Workflow.ComponentModel.Activity activity, Type targetType);
member this.GetRuntimeValue : System.Workflow.ComponentModel.Activity * Type -> obj
Public Function GetRuntimeValue (activity As Activity, targetType As Type) As Object

Parameters

activity
Activity

The Activity that owns this bind.

targetType
Type

The Type of the object if a Delegate; otherwise a null reference (Nothing in Visual Basic). activity is null.

Returns

The Object representing the run-time value of this ActivityBind.

Exceptions

activity is a null reference (Nothing in Visual Basic).

Applies to