Show / Hide Table of Contents

Class RuntimeArgument

Inheritance
System.Object
LocationReference
RuntimeArgument
Inherited Members
LocationReference.Name
LocationReference.Type
Namespace: System.Activities
Assembly: System.Activities.dll
Syntax
public sealed class RuntimeArgument : LocationReference

Constructors

RuntimeArgument(String, Type, ArgumentDirection)

Declaration
public RuntimeArgument(string name, Type argumentType, ArgumentDirection direction)
Parameters
System.String name

System.Type argumentType

ArgumentDirection direction

RuntimeArgument(String, Type, ArgumentDirection, Boolean)

Declaration
public RuntimeArgument(string name, Type argumentType, ArgumentDirection direction, bool isRequired)
Parameters
System.String name

System.Type argumentType

ArgumentDirection direction

System.Boolean isRequired

RuntimeArgument(String, Type, ArgumentDirection, Boolean, List<String>)

Declaration
public RuntimeArgument(string name, Type argumentType, ArgumentDirection direction, bool isRequired, List<string> overloadGroupNames)
Parameters
System.String name

System.Type argumentType

ArgumentDirection direction

System.Boolean isRequired

System.Collections.Generic.List<System.String> overloadGroupNames

RuntimeArgument(String, Type, ArgumentDirection, List<String>)

Declaration
public RuntimeArgument(string name, Type argumentType, ArgumentDirection direction, List<string> overloadGroupNames)
Parameters
System.String name

System.Type argumentType

ArgumentDirection direction

System.Collections.Generic.List<System.String> overloadGroupNames

Properties

Direction

Declaration
public ArgumentDirection Direction { get; }
Property Value
ArgumentDirection

IsRequired

Declaration
public bool IsRequired { get; }
Property Value
System.Boolean

NameCore

Declaration
protected override string NameCore { get; }
Property Value
System.String

Overrides
LocationReference.NameCore

OverloadGroupNames

Declaration
public ReadOnlyCollection<string> OverloadGroupNames { get; }
Property Value
System.Collections.ObjectModel.ReadOnlyCollection<System.String>

TypeCore

Declaration
protected override Type TypeCore { get; }
Property Value
System.Type

Overrides
LocationReference.TypeCore

Methods

Get(ActivityContext)

Declaration
public object Get(ActivityContext context)
Parameters
ActivityContext context

Returns
System.Object

Get<T>(ActivityContext)

Declaration
public T Get<T>(ActivityContext context)
Parameters
ActivityContext context

Returns
T

Type Parameters
T

GetLocation(ActivityContext)

Declaration
public override Location GetLocation(ActivityContext context)
Parameters
ActivityContext context

Returns
Location

Overrides
LocationReference.GetLocation(ActivityContext)

Set(ActivityContext, Object)

Declaration
public void Set(ActivityContext context, object value)
Parameters
ActivityContext context

System.Object value

Back to top Generated by DocFX