ActivatedClientTypeEntry.ObjectType Propiedad

Definición

Obtiene el Type del tipo activado en 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 el Type del tipo activado en el cliente.

Ejemplos

En el ejemplo de código siguiente se muestra cómo utilizar la propiedad 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())

Se aplica a