Compartir a través de


HierarchyInfo.GetService(Type) Método

Definición

Obtiene el objeto de servicio del tipo especificado.

protected:
 System::Object ^ GetService(Type ^ type);
protected object GetService (Type type);
member this.GetService : Type -> obj

Parámetros

type
Type

Objeto que especifica el tipo de objeto de servicio que se va a obtener.

Devoluciones

Objeto de servicio del tipo especificado por el type parámetro o null si no hay ningún objeto de servicio de tipo type.

Implementaciones

Ejemplos

En el ejemplo siguiente se usa el GetService método para obtener el Connection objeto .

protected override Connection Connection
{
    get
    {
        Connection connection = (Connection)GetService(typeof(Connection));
        return connection;
    }
}

Se aplica a