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

戻り値

指定したサービスの記述の 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())

適用対象