Show / Hide Table of Contents

Class InArgument<T>

Inheritance
System.Object
Argument
InArgument
InArgument<T>
Inherited Members
InArgument.CreateReference(InArgument, String)
InArgument.CreateReference(InOutArgument, String)
Argument.UnspecifiedEvaluationOrder
Argument.ResultValue
Argument.CreateReference(Argument, String)
Argument.Create(Type, ArgumentDirection)
Argument.Get<T>(ActivityContext)
Argument.Set(ActivityContext, Object)
Argument.GetLocation(ActivityContext)
Argument.ArgumentType
Argument.Direction
Argument.EvaluationOrder
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>)

Declaration
public InArgument(Activity<T> expression)
Parameters
Activity<T> expression

InArgument(DelegateArgument)

Declaration
public InArgument(DelegateArgument delegateArgument)
Parameters
DelegateArgument delegateArgument

InArgument(Variable)

Declaration
public InArgument(Variable variable)
Parameters
Variable 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

Declaration
public Activity<T> Expression { get; set; }
Property Value
Activity<T>

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)

Declaration
public T Get(ActivityContext context)
Parameters
ActivityContext context

Returns
T

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>

Back to top Generated by DocFX