다음을 통해 공유


ActivatedClientTypeEntry.ObjectType 속성

정의

클라이언트 활성 형식의 Type을 가져옵니다.

public:
 property Type ^ ObjectType { Type ^ get(); };
public Type ObjectType { get; }
member this.ObjectType : Type
Public ReadOnly Property ObjectType As Type

속성 값

클라이언트 활성 형식의 Type을 가져옵니다.

예제

다음 코드 예제에서는 ObjectType 속성을 사용하는 방법을 보여 줍니다.

// Print the object type.
Console::WriteLine( "Object type of client activated object: {0}", activatedClientTypeEntry->ObjectType->ToString() );
// Print the object type.
Console.WriteLine(
    "Object type of client activated object: " +
    myActivatedClientTypeEntry.ObjectType.ToString());
' Print the object type.
Console.WriteLine("Object type of client activated object: " + _
    myActivatedClientTypeEntry.ObjectType.ToString())

적용 대상