Condividi tramite


ActivatedClientTypeEntry.ObjectType Proprietà

Definizione

Ottiene l'oggetto Type del tipo attivato dal client.

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

Valore della proprietà

Ottiene l'oggetto Type del tipo attivato dal client.

Esempio

Nell'esempio di codice seguente viene illustrato come utilizzare la ObjectType proprietà .

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

Si applica a