IManagementHost.UserInterfaceTechnologyType Property

Definition

Gets the type that implements the IModulePage interface and is used as the base class for a page in the user interface.

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

Property Value

The type that implements the IModulePage interface and is used as the base class for a page in the user interface.

Examples

The following example shows an implementation of the UserInterfaceTechnologyType property.

Type IManagementHost.UserInterfaceTechnologyType {
    get {
        return typeof(Control);
    }
} 

Applies to