Compartir por


ActivatedClientTypeEntry.ObjectType Propiedad

Definición

Obtiene del Type tipo activado por el cliente.

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

Valor de propiedad

Obtiene del Type tipo activado por el cliente.

Ejemplos

En el ejemplo de código siguiente se muestra cómo usar la ObjectType propiedad .

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

Se aplica a