Compartir a través de


ServiceCollection.Item[] Propiedad

Definición

Obtiene un objeto Service de la colección basándose en el nombre o en el número de índice.

Sobrecargas

Item[Int32]

Obtiene un objeto Service de la colección según el número de índice.

Item[String]

Obtiene un objeto Service de la colección basándose en el nombre.

Item[Int32]

Obtiene un objeto Service de la colección según el número de índice.

public:
 property Microsoft::SqlServer::Management::Smo::Wmi::Service ^ default[int] { Microsoft::SqlServer::Management::Smo::Wmi::Service ^ get(int index); };
public Microsoft.SqlServer.Management.Smo.Wmi.Service this[int index] { get; }
member this.Item(int) : Microsoft.SqlServer.Management.Smo.Wmi.Service
Default Public ReadOnly Property Item(index As Integer) As Service

Parámetros

index
Int32

Valor Int32 que especifica la posición del objeto Service en la colección ServiceCollection.

Valor de propiedad

Valor Service de objeto que representa un servicio de SQL Server.

Ejemplos

Usar colecciones

Se aplica a

Item[String]

Obtiene un objeto Service de la colección basándose en el nombre.

public:
 property Microsoft::SqlServer::Management::Smo::Wmi::Service ^ default[System::String ^] { Microsoft::SqlServer::Management::Smo::Wmi::Service ^ get(System::String ^ name); };
public Microsoft.SqlServer.Management.Smo.Wmi.Service this[string name] { get; }
member this.Item(string) : Microsoft.SqlServer.Management.Smo.Wmi.Service
Default Public ReadOnly Property Item(name As String) As Service

Parámetros

name
String

Valor String que especifica el nombre del objeto Service en la colección ServiceCollection.

Valor de propiedad

Valor Service de objeto que representa un servicio de SQL Server.

Ejemplos

Usar colecciones

Se aplica a