다음을 통해 공유


ServiceDescriptionCollection.IndexOf(ServiceDescription) 메서드

정의

컬렉션에서 지정된 ServiceDescription을 검색하여 처음 나오는 항목의 인덱스(0부터 시작)를 반환합니다.

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

매개 변수

serviceDescription
ServiceDescription

컬렉션에서 검색할 ServiceDescription입니다.

반환

Int32

지정된 서비스 설명의 인덱스(0부터 시작)이거나, 해당 요소가 컬렉션에 없으면 -1입니다.

예제

// 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())

적용 대상