ProfileSettingsCollection.IndexOf(String) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Retorna o índice do objeto ProfileSettings especificado.
public:
int IndexOf(System::String ^ name);
public int IndexOf (string name);
member this.IndexOf : string -> int
Public Function IndexOf (name As String) As Integer
Parâmetros
- name
- String
O nome de um objeto ProfileSettings na coleção.
Retornos
O índice do objeto ProfileSettings especificado ou -1, se o objeto não for encontrado na coleção.
Exemplos
O exemplo de código a seguir mostra como usar o método IndexOf. Este exemplo de código faz parte de um exemplo maior fornecido para a HealthMonitoringSection classe.
// Get the index of the 'Default' ProfileSettings in the Profiles collection property.
Console.WriteLine("Profiles index for 'Default': {0}.",
healthMonitoringSection.Profiles.IndexOf("Default"));
' Get the index of the 'Default' ProfileSettings in the Profiles collection property.
Console.WriteLine("Profiles index for 'Default': {0}.", _
healthMonitoringSection.Profiles.IndexOf("Default"))