ExpressionContainerValue<TResult> Class

 

An activity that is used to wrap a translated expression tree such that the structure is preserved through translation.

Namespace:   Microsoft.Activities.Expressions
Assembly:  Microsoft.Activities (in Microsoft.Activities.dll)

Inheritance Hierarchy

System.Object
  System.Activities.Activity
    System.Activities.ActivityWithResult
      System.Activities.Activity<TResult>
        System.Activities.NativeActivity<TResult>
          Microsoft.Activities.Expressions.ExpressionContainerValue<TResult>

Syntax

[DebuggerStepThroughAttribute]
[ContentPropertyAttribute("Expression")]
public class ExpressionContainerValue<TResult> : NativeActivity<TResult>
generic<typename TResult>
[DebuggerStepThroughAttribute]
[ContentPropertyAttribute("Expression")]
public ref class ExpressionContainerValue : NativeActivity<TResult>
[<DebuggerStepThroughAttribute>]
[<ContentPropertyAttribute("Expression")>]
type ExpressionContainerValue<'TResult> = 
    class
        inherit NativeActivity<'TResult>
    end
<DebuggerStepThroughAttribute>
<ContentPropertyAttribute("Expression")>
Public Class ExpressionContainerValue(Of TResult)
    Inherits NativeActivity(Of TResult)

Type Parameters

  • TResult
    The result type.

Constructors

Name Description
System_CAPS_pubmethod ExpressionContainerValue<TResult>()

Initializes a new instance of the ExpressionContainerValue<TResult> class.

System_CAPS_pubmethod ExpressionContainerValue<TResult>(Activity<TResult>, Dictionary<String, Argument>)

Initializes a new instance of the ExpressionContainerValue<TResult> class.

Properties

Name Description
System_CAPS_pubproperty Arguments

Gets the set of arguments to the expression.

System_CAPS_protproperty CacheId

(Inherited from Activity.)

System_CAPS_protproperty CanInduceIdle

(Inherited from NativeActivity<TResult>.)

System_CAPS_protproperty Constraints

(Inherited from Activity.)

System_CAPS_pubproperty DisplayName

(Inherited from Activity.)

System_CAPS_pubproperty Expression

Gets or sets the expression tree.

System_CAPS_pubproperty Id

(Inherited from Activity.)

System_CAPS_protproperty Implementation

(Inherited from NativeActivity<TResult>.)

System_CAPS_protproperty ImplementationVersion

(Inherited from NativeActivity<TResult>.)

System_CAPS_pubproperty Result

(Inherited from Activity<TResult>.)

System_CAPS_pubproperty ResultType

(Inherited from ActivityWithResult.)

Methods

Name Description
System_CAPS_protmethod Abort(NativeActivityAbortContext)

(Inherited from NativeActivity<TResult>.)

System_CAPS_protmethod CacheMetadata(ActivityMetadata)

(Inherited from NativeActivity<TResult>.)

System_CAPS_protmethod CacheMetadata(NativeActivityMetadata)

Creates and validates a description of the activity?s arguments, variables, child activities, and activity delegates.(Overrides NativeActivity<TResult>.CacheMetadata(NativeActivityMetadata).)

System_CAPS_protmethod Cancel(NativeActivityContext)

(Inherited from NativeActivity<TResult>.)

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Execute(NativeActivityContext)

Runs the activity's execution logic.(Overrides NativeActivity<TResult>.Execute(NativeActivityContext).)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_protmethod OnCreateDynamicUpdateMap(NativeActivityUpdateMapMetadata, Activity)

(Inherited from NativeActivity<TResult>.)

System_CAPS_protmethod OnCreateDynamicUpdateMap(UpdateMapMetadata, Activity)

(Inherited from NativeActivity<TResult>.)

System_CAPS_pubmethod ToString()

(Inherited from Activity.)

System_CAPS_protmethod UpdateInstance(NativeActivityUpdateContext)

(Inherited from NativeActivity<TResult>.)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.Activities.Expressions Namespace

Return to top