ActivityBind.GetRuntimeValue Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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
- 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).