RuntimeArgument 생성자

정의

RuntimeArgument 클래스의 새 인스턴스를 초기화합니다.

오버로드

Name Description
RuntimeArgument(String, Type, ArgumentDirection)

이름, 데이터 형식 및 인수 방향을 사용하여 클래스의 RuntimeArgument 새 인스턴스를 초기화합니다.

RuntimeArgument(String, Type, ArgumentDirection, Boolean)

이름, 데이터 형식, 인수 방향 및 값에 바인딩해야 하는지 여부를 나타내는 값을 사용하여 클래스의 RuntimeArgument 새 인스턴스 RuntimeArgument 를 초기화합니다.

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

이름, 데이터 형식, 인수 방향 및 오버로드 그룹 이름 목록을 사용하여 클래스의 새 인스턴스 RuntimeArgument 를 초기화합니다.

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

이름, 데이터 형식, 인수 방향, 값에 바인딩해야 하는지 여부 RuntimeArgument 및 오버로드 그룹 이름 목록을 사용하여 클래스의 새 인스턴스 RuntimeArgument 를 초기화합니다.

RuntimeArgument(String, Type, ArgumentDirection)

이름, 데이터 형식 및 인수 방향을 사용하여 클래스의 RuntimeArgument 새 인스턴스를 초기화합니다.

public:
 RuntimeArgument(System::String ^ name, Type ^ argumentType, System::Activities::ArgumentDirection direction);
public RuntimeArgument(string name, Type argumentType, System.Activities.ArgumentDirection direction);
new System.Activities.RuntimeArgument : string * Type * System.Activities.ArgumentDirection -> System.Activities.RuntimeArgument
Public Sub New (name As String, argumentType As Type, direction As ArgumentDirection)

매개 변수

name
String

RuntimeArgument의 이름입니다.

argumentType
Type

의 형식입니다 RuntimeArgument.

direction
ArgumentDirection

인수를 통한 데이터 흐름의 방향입니다.

적용 대상

RuntimeArgument(String, Type, ArgumentDirection, Boolean)

이름, 데이터 형식, 인수 방향 및 값에 바인딩해야 하는지 여부를 나타내는 값을 사용하여 클래스의 RuntimeArgument 새 인스턴스 RuntimeArgument 를 초기화합니다.

public:
 RuntimeArgument(System::String ^ name, Type ^ argumentType, System::Activities::ArgumentDirection direction, bool isRequired);
public RuntimeArgument(string name, Type argumentType, System.Activities.ArgumentDirection direction, bool isRequired);
new System.Activities.RuntimeArgument : string * Type * System.Activities.ArgumentDirection * bool -> System.Activities.RuntimeArgument
Public Sub New (name As String, argumentType As Type, direction As ArgumentDirection, isRequired As Boolean)

매개 변수

name
String

RuntimeArgument의 이름입니다.

argumentType
Type

의 데이터 형식입니다 RuntimeArgument.

direction
ArgumentDirection

인수를 통한 데이터 흐름의 방향입니다.

isRequired
Boolean

true 값에 RuntimeArgument 바인딩되어야 함을 나타내려면 이고, 그렇지 않으면 false입니다.

적용 대상

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

이름, 데이터 형식, 인수 방향 및 오버로드 그룹 이름 목록을 사용하여 클래스의 새 인스턴스 RuntimeArgument 를 초기화합니다.

public:
 RuntimeArgument(System::String ^ name, Type ^ argumentType, System::Activities::ArgumentDirection direction, System::Collections::Generic::List<System::String ^> ^ overloadGroupNames);
public RuntimeArgument(string name, Type argumentType, System.Activities.ArgumentDirection direction, System.Collections.Generic.List<string> overloadGroupNames);
new System.Activities.RuntimeArgument : string * Type * System.Activities.ArgumentDirection * System.Collections.Generic.List<string> -> System.Activities.RuntimeArgument
Public Sub New (name As String, argumentType As Type, direction As ArgumentDirection, overloadGroupNames As List(Of String))

매개 변수

name
String

RuntimeArgument의 이름입니다.

argumentType
Type

의 데이터 형식입니다 RuntimeArgument.

direction
ArgumentDirection

인수를 통한 데이터 흐름의 방향입니다.

overloadGroupNames
List<String>

RuntimeArgument에 적용되는 오버로드 그룹입니다.

적용 대상

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

이름, 데이터 형식, 인수 방향, 값에 바인딩해야 하는지 여부 RuntimeArgument 및 오버로드 그룹 이름 목록을 사용하여 클래스의 새 인스턴스 RuntimeArgument 를 초기화합니다.

public:
 RuntimeArgument(System::String ^ name, Type ^ argumentType, System::Activities::ArgumentDirection direction, bool isRequired, System::Collections::Generic::List<System::String ^> ^ overloadGroupNames);
public RuntimeArgument(string name, Type argumentType, System.Activities.ArgumentDirection direction, bool isRequired, System.Collections.Generic.List<string> overloadGroupNames);
new System.Activities.RuntimeArgument : string * Type * System.Activities.ArgumentDirection * bool * System.Collections.Generic.List<string> -> System.Activities.RuntimeArgument
Public Sub New (name As String, argumentType As Type, direction As ArgumentDirection, isRequired As Boolean, overloadGroupNames As List(Of String))

매개 변수

name
String

RuntimeArgument의 이름입니다.

argumentType
Type

의 데이터 형식입니다 RuntimeArgument.

direction
ArgumentDirection

인수를 통한 데이터 흐름의 방향입니다.

isRequired
Boolean

true 값에 RuntimeArgument 바인딩되어야 함을 나타내려면 이고, 그렇지 않으면 false입니다.

overloadGroupNames
List<String>

RuntimeArgument에 적용되는 오버로드 그룹의 이름입니다.

설명

바인딩되지 않은 필수 인수로 인해 디자인 타임에 표시되는 유효성 검사 오류가 발생합니다.

RuntimeArgument.IsRequired 인수에 true 적용되는 경우 System.Activities.RequiredArgumentAttribute 로 설정됩니다.

오버로드 그룹을 통해 OverloadGroupAttribute인수에 설정할 수 있습니다.

적용 대상