Class InArgument<T>
Inherited Members
Namespace: System.Activities
Assembly: System.Activities.dll
Syntax
public sealed class InArgument<T> : InArgument
Type Parameters
T
|
Constructors
InArgument()
Declaration
public InArgument()
InArgument(T)
Declaration
public InArgument(T constValue)
Parameters
T
constValue
|
InArgument(Activity<T>)
InArgument(DelegateArgument)
Declaration
public InArgument(DelegateArgument delegateArgument)
Parameters
DelegateArgument
delegateArgument
|
InArgument(Variable)
InArgument(Expression<Func<ActivityContext, T>>)
Declaration
public InArgument(Expression<Func<ActivityContext, T>> expression)
Parameters
System.Linq.Expressions.Expression<System.Func<ActivityContext, T>>
expression
|
Properties
Expression
Methods
FromDelegateArgument(DelegateArgument)
Declaration
public static InArgument<T> FromDelegateArgument(DelegateArgument delegateArgument)
Parameters
DelegateArgument
delegateArgument
|
Returns
InArgument<T>
|
FromExpression(Activity<T>)
Declaration
public static InArgument<T> FromExpression(Activity<T> expression)
Parameters
Activity<T>
expression
|
Returns
InArgument<T>
|
FromValue(T)
Declaration
public static InArgument<T> FromValue(T constValue)
Parameters
T
constValue
|
Returns
InArgument<T>
|
FromVariable(Variable)
Declaration
public static InArgument<T> FromVariable(Variable variable)
Parameters
Variable
variable
|
Returns
InArgument<T>
|
Get(ActivityContext)
Set(ActivityContext, T)
Declaration
public void Set(ActivityContext context, T value)
Parameters
ActivityContext
context
|
T
value
|
Operators
Implicit(T to InArgument<T>)
Declaration
public static implicit operator InArgument<T>(T constValue)
Parameters
T
constValue
|
Returns
InArgument<T>
|
Implicit(Activity<T> to InArgument<T>)
Declaration
public static implicit operator InArgument<T>(Activity<T> expression)
Parameters
Activity<T>
expression
|
Returns
InArgument<T>
|
Implicit(DelegateArgument to InArgument<T>)
Declaration
public static implicit operator InArgument<T>(DelegateArgument delegateArgument)
Parameters
DelegateArgument
delegateArgument
|
Returns
InArgument<T>
|
Implicit(Variable to InArgument<T>)
Declaration
public static implicit operator InArgument<T>(Variable variable)
Parameters
Variable
variable
|
Returns
InArgument<T>
|