SoapHeaderCollection.IndexOf メソッド
アセンブリ: System.Web.Services (system.web.services.dll 内)

Dim instance As SoapHeaderCollection Dim header As SoapHeader Dim returnValue As Integer returnValue = instance.IndexOf(header)
戻り値
header パラメータが SoapHeaderCollection 内に存在する場合は、そのインデックス。それ以外の場合は -1。

' Check to see whether the collection contains mySecondSoapHeader. If mySoapHeaderCollection.Contains(mySecondSoapHeader) Then ' Get the index of mySecondSoapHeader from the collection. Console.WriteLine("Index of mySecondSoapHeader: " & _ mySoapHeaderCollection.IndexOf(mySecondSoapHeader).ToString()) ' Get the SoapHeader from the collection. Dim mySoapHeader1 As MySoapHeader = CType(mySoapHeaderCollection( _ mySoapHeaderCollection.IndexOf(mySecondSoapHeader)), _ MySoapHeader) Console.WriteLine("SoapHeader retrieved from the collection: " _ & mySoapHeader1.ToString()) ' Remove a SoapHeader from the collection. mySoapHeaderCollection.Remove(mySoapHeader1) Console.WriteLine("Number of items after removal: {0}", _ & mySoapHeaderCollection.Count) Else Console.WriteLine( _ "mySoapHeaderCollection does not contain mySecondSoapHeader.") End If
// Check to see whether the collection contains mySecondSoapHeader. if(mySoapHeaderCollection.Contains(mySecondSoapHeader)) { // Get the index of mySecondSoapHeader from the collection. Console.WriteLine("Index of mySecondSoapHeader: " + mySoapHeaderCollection.IndexOf(mySecondSoapHeader)); // Get the SoapHeader from the collection. MySoapHeader mySoapHeader1 = (MySoapHeader)mySoapHeaderCollection [mySoapHeaderCollection.IndexOf(mySecondSoapHeader)]; Console.WriteLine("SoapHeader retrieved from the collection: " + mySoapHeader1); // Remove a SoapHeader from the collection. mySoapHeaderCollection.Remove(mySoapHeader1); Console.WriteLine("Number of items after removal: {0}", mySoapHeaderCollection.Count); } else Console.WriteLine( "mySoapHeaderCollection does not contain mySecondSoapHeader.");
// Check to see whether the collection contains mySecondSoapHeader. if ( mySoapHeaderCollection->Contains( mySecondSoapHeader ) ) { // Get the index of mySecondSoapHeader from the collection. Console::WriteLine( "Index of mySecondSoapHeader: {0}", mySoapHeaderCollection->IndexOf( mySecondSoapHeader ) ); // Get the SoapHeader from the collection. MySoapHeader^ mySoapHeader1 = dynamic_cast<MySoapHeader^>(mySoapHeaderCollection[ mySoapHeaderCollection->IndexOf( mySecondSoapHeader ) ]); Console::WriteLine( "SoapHeader retrieved from the collection: {0}", mySoapHeader1 ); // Remove a SoapHeader from the collection. mySoapHeaderCollection->Remove( mySoapHeader1 ); Console::WriteLine( "Number of items after removal: {0}", mySoapHeaderCollection->Count ); } else Console::WriteLine( "mySoapHeaderCollection does not contain mySecondSoapHeader." );
// Check to see whether the collection contains mySecondSoapHeader. if (mySoapHeaderCollection.Contains(mySecondSoapHeader)) { // Get the index of mySecondSoapHeader from the collection. Console.WriteLine("Index of mySecondSoapHeader: " + mySoapHeaderCollection.IndexOf(mySecondSoapHeader)); // Get the SoapHeader from the collection. MySoapHeader mySoapHeader1 = (MySoapHeader)mySoapHeaderCollection. get_Item(mySoapHeaderCollection.IndexOf(mySecondSoapHeader)); Console.WriteLine("SoapHeader retrieved from the collection: " + mySoapHeader1); // Remove a SoapHeader from the collection. mySoapHeaderCollection.Remove(mySoapHeader1); Console.WriteLine("Number of items after removal: {0}", System.Convert.ToString(mySoapHeaderCollection.get_Count())); } else { Console.WriteLine("mySoapHeaderCollection does not contain " + "mySecondSoapHeader."); }

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からSoapHeaderCollection.IndexOf メソッドを検索する場合は、下記のリンクをクリックしてください。

- SoapHeaderCollection.IndexOf メソッドのページへのリンク