ActivatedClientTypeEntry.ObjectType Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Type Mendapatkan dari jenis yang diaktifkan klien.
public:
property Type ^ ObjectType { Type ^ get(); };
public Type ObjectType { get; }
member this.ObjectType : Type
Public ReadOnly Property ObjectType As Type
Nilai Properti
Type Mendapatkan dari jenis yang diaktifkan klien.
Contoh
Contoh kode berikut menunjukkan cara menggunakan ObjectType properti .
// 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())