RuntimeArgument 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
RuntimeArgument 클래스의 새 인스턴스를 초기화합니다.
오버로드
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
RuntimeArgument가 값으로 바인딩되어야 함을 나타내려면 true
이고, 그렇지 않으면 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
인수를 통한 데이터 흐름 방향입니다.
이 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
RuntimeArgument가 값으로 바인딩되어야 함을 나타내려면 true
이고, 그렇지 않으면 false
입니다.
이 RuntimeArgument에 적용되는 오버로드 그룹 이름입니다.
설명
바인딩되지 않은 필수 인수는 디자인 타임에 표시되는 유효성 검사 오류를 발생시킵니다.
합니다 RuntimeArgument.IsRequired 로 설정 된 true
경우는 System.Activities.RequiredArgumentAttribute 인수에 적용 됩니다.
오버로드 그룹은 OverloadGroupAttribute를 통해 인수에 설정됩니다.
적용 대상
.NET