다음을 통해 공유


UserTrackPointCollection 생성자

정의

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

오버로드

UserTrackPointCollection()

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

UserTrackPointCollection(IEnumerable<UserTrackPoint>)

사용자 추적 지점 목록을 사용하여 UserTrackPointCollection 클래스의 새 인스턴스를 초기화합니다.

UserTrackPointCollection()

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

public:
 UserTrackPointCollection();
public UserTrackPointCollection ();
Public Sub New ()

설명

매개 변수가 없는 생성자는 를 UserTrackPointCollection 빈 목록으로 초기화합니다.

적용 대상

UserTrackPointCollection(IEnumerable<UserTrackPoint>)

사용자 추적 지점 목록을 사용하여 UserTrackPointCollection 클래스의 새 인스턴스를 초기화합니다.

public:
 UserTrackPointCollection(System::Collections::Generic::IEnumerable<System::Workflow::Runtime::Tracking::UserTrackPoint ^> ^ points);
public UserTrackPointCollection (System.Collections.Generic.IEnumerable<System.Workflow.Runtime.Tracking.UserTrackPoint> points);
new System.Workflow.Runtime.Tracking.UserTrackPointCollection : seq<System.Workflow.Runtime.Tracking.UserTrackPoint> -> System.Workflow.Runtime.Tracking.UserTrackPointCollection
Public Sub New (points As IEnumerable(Of UserTrackPoint))

매개 변수

points
IEnumerable<UserTrackPoint>

IEnumerable<T> 개체의 UserTrackPoint 목록입니다.

예외

points이 null 참조(Visual Basic의 경우 Nothing)인 경우

설명

UserTrackPointCollection에 지정된 UserTrackPoint 개체를 포함하여 points이 초기화됩니다.

적용 대상