Udostępnij za pośrednictwem


ServiceDescriptionCollection.IndexOf(ServiceDescription) Metoda

Definicja

Wyszukuje określony ServiceDescription element i zwraca indeks zerowy pierwszego wystąpienia w kolekcji.

public:
 int IndexOf(System::Web::Services::Description::ServiceDescription ^ serviceDescription);
public int IndexOf (System.Web.Services.Description.ServiceDescription serviceDescription);
member this.IndexOf : System.Web.Services.Description.ServiceDescription -> int
Public Function IndexOf (serviceDescription As ServiceDescription) As Integer

Parametry

serviceDescription
ServiceDescription

Element ServiceDescription , dla którego ma być wyszukiwany w kolekcji.

Zwraca

Indeks oparty na zerowym opisie określonej usługi lub -1, jeśli element nie został znaleziony w kolekcji.

Przykłady

// Get the index of 'ServiceDescription' object.
int myIndex = myCollection.IndexOf(myServiceDescription2);
// Remove 'ServiceDescription' object from the collection.
myCollection.Remove(myServiceDescription2);
Console.WriteLine("Element at index {0} is removed ", myIndex);
' Get the index of 'ServiceDescription' object.
Dim myIndex As Integer = myCollection.IndexOf(myServiceDescription2)
' Remove 'ServiceDescription' object from the collection.
myCollection.Remove(myServiceDescription2)
Console.WriteLine("Element at index {0} is removed ", myIndex.ToString())

Dotyczy