ActivatedClientTypeEntry.ObjectType Свойство

Определение

Получает Type тип службы, активируемой клиентом.

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

Значение свойства

Получает Type тип службы, активируемой клиентом.

Примеры

В следующем примере кода показано, как использовать свойство 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())

Применяется к