UserTrackingLocation 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
UserTrackingLocation 클래스의 새 인스턴스를 초기화합니다.
오버로드
UserTrackingLocation() |
UserTrackingLocation 클래스의 새 인스턴스를 초기화합니다. |
UserTrackingLocation(String) |
사용자 데이터의 CLR(공용 언어 런타임) 형식의 정규화되지 않은 이름을 사용하여 UserTrackingLocation 클래스의 새 인스턴스를 초기화합니다. |
UserTrackingLocation(Type) |
사용자 데이터의 CLR(공용 언어 런타임) 형식을 사용하여 UserTrackingLocation 클래스의 새 인스턴스를 초기화합니다. |
UserTrackingLocation(String, String) |
사용자 데이터의 CLR(공용 언어 런타임) 형식의 정규화되지 않은 이름과 사용자 데이터를 내보내야 하는 활동의 CLR 형식의 정규화되지 않은 이름을 사용하여 UserTrackingLocation 클래스의 새 인스턴스를 초기화합니다. |
UserTrackingLocation(String, Type) |
사용자 데이터의 CLR(공용 언어 런타임) 형식의 정규화되지 않은 이름과 사용자 데이터를 내보내야 하는 활동의 CLR 형식을 사용하여 UserTrackingLocation 클래스의 새 인스턴스를 초기화합니다. |
UserTrackingLocation(Type, String) |
사용자 데이터의 CLR(공용 언어 런타임) 형식과 사용자 데이터를 내보내야 하는 활동의 CLR 형식의 정규화되지 않은 이름을 사용하여 UserTrackingLocation 클래스의 새 인스턴스를 초기화합니다. |
UserTrackingLocation(Type, Type) |
사용자 데이터의 CLR(공용 언어 런타임) 형식과 사용자 데이터를 내보내야 하는 활동의 CLR 형식을 사용하여 UserTrackingLocation 클래스의 새 인스턴스를 초기화합니다. |
UserTrackingLocation()
UserTrackingLocation 클래스의 새 인스턴스를 초기화합니다.
public:
UserTrackingLocation();
public UserTrackingLocation ();
Public Sub New ()
설명
매개 변수가 없는 생성자는 빈 UserTrackingLocation를 초기화합니다. 일치시킬 사용자 데이터 형식 및 일치시키기 위해 이 데이터를 내보내야 하는 활동 형식을 모두 지정해야 합니다. 따라서 UserTrackingLocation을 구성하려면 ActivityTypeName 또는 ActivityType을 명시적으로 설정하여 일치시키기 위해 사용자 데이터를 내보내야 하는 활동 형식을 지정하고 ArgumentTypeName 또는 ArgumentType을 명시적으로 설정하여 일치시킬 사용자 데이터 형식을 지정해야 합니다. 기타 속성을 설정하여 UserTrackingLocation을 추가로 구성할 수 있습니다.
적용 대상
UserTrackingLocation(String)
사용자 데이터의 CLR(공용 언어 런타임) 형식의 정규화되지 않은 이름을 사용하여 UserTrackingLocation 클래스의 새 인스턴스를 초기화합니다.
public:
UserTrackingLocation(System::String ^ argumentTypeName);
public UserTrackingLocation (string argumentTypeName);
new System.Workflow.Runtime.Tracking.UserTrackingLocation : string -> System.Workflow.Runtime.Tracking.UserTrackingLocation
Public Sub New (argumentTypeName As String)
매개 변수
- argumentTypeName
- String
일치시킬 사용자 데이터 CLR 형식의 정규화되지 않은 이름입니다.
설명
이 생성자는 워크플로에서 내보낸 지정된 형식의 사용자 데이터와 일치하는 UserTrackingLocation을 초기화합니다.
Type에 대해 일치시킬 사용자 데이터 argumentTypeName
의 정규화되지 않은 이름을 지정해야 합니다. 코드에 ActivityType 또는 ActivityTypeName을 명시적으로 설정하여 UserTrackingLocation을 올바로 구성해야 합니다. 기타 속성을 설정하여 UserTrackingLocation을 추가로 정규화할 수 있습니다.
적용 대상
UserTrackingLocation(Type)
사용자 데이터의 CLR(공용 언어 런타임) 형식을 사용하여 UserTrackingLocation 클래스의 새 인스턴스를 초기화합니다.
public:
UserTrackingLocation(Type ^ argumentType);
public UserTrackingLocation (Type argumentType);
new System.Workflow.Runtime.Tracking.UserTrackingLocation : Type -> System.Workflow.Runtime.Tracking.UserTrackingLocation
Public Sub New (argumentType As Type)
매개 변수
설명
이 생성자는 워크플로에서 내보낸 지정된 형식의 사용자 데이터와 일치하는 UserTrackingLocation을 초기화합니다. 코드에 ActivityType 또는 ActivityTypeName을 명시적으로 설정하여 UserTrackingLocation을 올바로 구성해야 합니다. 기타 속성을 설정하여 UserTrackingLocation을 추가로 정규화할 수 있습니다.
적용 대상
UserTrackingLocation(String, String)
사용자 데이터의 CLR(공용 언어 런타임) 형식의 정규화되지 않은 이름과 사용자 데이터를 내보내야 하는 활동의 CLR 형식의 정규화되지 않은 이름을 사용하여 UserTrackingLocation 클래스의 새 인스턴스를 초기화합니다.
public:
UserTrackingLocation(System::String ^ argumentTypeName, System::String ^ activityTypeName);
public UserTrackingLocation (string argumentTypeName, string activityTypeName);
new System.Workflow.Runtime.Tracking.UserTrackingLocation : string * string -> System.Workflow.Runtime.Tracking.UserTrackingLocation
Public Sub New (argumentTypeName As String, activityTypeName As String)
매개 변수
- argumentTypeName
- String
일치시킬 사용자 데이터 CLR 형식의 정규화되지 않은 이름입니다.
- activityTypeName
- String
사용자 데이터를 내보내야 하는 활동의 CLR 형식의 정규화되지 않은 이름입니다.
설명
이 생성자는 지정된 형식의 활동에서 내보낸 지정된 형식의 모든 사용자 데이터와 일치하는 UserTrackingLocation을 초기화합니다. 활동 및 사용자 데이터 Type의 정규화되지 않은 이름을 지정해야 합니다. 예를 들어 Type 활동 CodeActivity의 정규화되지 않은 이름은 "Code"입니다. 기타 속성을 설정하여 UserTrackingLocation을 추가로 정규화할 수 있습니다.
적용 대상
UserTrackingLocation(String, Type)
사용자 데이터의 CLR(공용 언어 런타임) 형식의 정규화되지 않은 이름과 사용자 데이터를 내보내야 하는 활동의 CLR 형식을 사용하여 UserTrackingLocation 클래스의 새 인스턴스를 초기화합니다.
public:
UserTrackingLocation(System::String ^ argumentTypeName, Type ^ activityType);
public UserTrackingLocation (string argumentTypeName, Type activityType);
new System.Workflow.Runtime.Tracking.UserTrackingLocation : string * Type -> System.Workflow.Runtime.Tracking.UserTrackingLocation
Public Sub New (argumentTypeName As String, activityType As Type)
매개 변수
- argumentTypeName
- String
일치시킬 사용자 데이터 CLR 형식의 정규화되지 않은 이름입니다.
설명
이 생성자는 지정된 형식의 활동에서 내보낸 지정된 형식의 모든 사용자 데이터와 일치하는 UserTrackingLocation을 초기화합니다. 사용자 데이터 Type의 정규화되지 않은 이름을 지정해야 합니다. 기타 속성을 설정하여 UserTrackingLocation을 추가로 정규화할 수 있습니다.
적용 대상
UserTrackingLocation(Type, String)
사용자 데이터의 CLR(공용 언어 런타임) 형식과 사용자 데이터를 내보내야 하는 활동의 CLR 형식의 정규화되지 않은 이름을 사용하여 UserTrackingLocation 클래스의 새 인스턴스를 초기화합니다.
public:
UserTrackingLocation(Type ^ argumentType, System::String ^ activityTypeName);
public UserTrackingLocation (Type argumentType, string activityTypeName);
new System.Workflow.Runtime.Tracking.UserTrackingLocation : Type * string -> System.Workflow.Runtime.Tracking.UserTrackingLocation
Public Sub New (argumentType As Type, activityTypeName As String)
매개 변수
- activityTypeName
- String
사용자 데이터를 내보내야 하는 활동의 CLR 형식의 정규화되지 않은 이름입니다.
설명
이 생성자는 지정된 형식의 활동에서 내보낸 지정된 형식의 모든 사용자 데이터와 일치하는 UserTrackingLocation을 초기화합니다. 활동 Type의 정규화되지 않은 이름을 지정해야 합니다. 예를 들어 Type 활동 CodeActivity의 정규화되지 않은 이름은 "Code"입니다. 기타 속성을 설정하여 UserTrackingLocation을 추가로 정규화할 수 있습니다.
적용 대상
UserTrackingLocation(Type, Type)
사용자 데이터의 CLR(공용 언어 런타임) 형식과 사용자 데이터를 내보내야 하는 활동의 CLR 형식을 사용하여 UserTrackingLocation 클래스의 새 인스턴스를 초기화합니다.
public:
UserTrackingLocation(Type ^ argumentType, Type ^ activityType);
public UserTrackingLocation (Type argumentType, Type activityType);
new System.Workflow.Runtime.Tracking.UserTrackingLocation : Type * Type -> System.Workflow.Runtime.Tracking.UserTrackingLocation
Public Sub New (argumentType As Type, activityType As Type)
매개 변수
설명
이 생성자는 지정된 형식의 활동에서 내보낸 지정된 형식의 모든 사용자 데이터와 일치하는 UserTrackingLocation을 초기화합니다. 기타 속성을 설정하여 UserTrackingLocation을 추가로 정규화할 수 있습니다.
적용 대상
.NET