Share via


ActivatedClientTypeEntry.ObjectType Eigenschaft

Definition

Ruft den Type des vom Client aktivierten Typs ab.

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

Eigenschaftswert

Ruft den Type des vom Client aktivierten Typs ab.

Beispiele

Im folgenden Codebeispiel wird die Verwendung der ObjectType-Eigenschaft veranschaulicht.

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

Gilt für: