次の方法で共有


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())

適用対象