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

Dim instance As PortCollection Dim port As Port Dim returnValue As Integer returnValue = instance.IndexOf(port)
戻り値
32 ビット符号付き整数。

myPortCollection = myService.Ports ' Create an array of Port objects. Console.WriteLine(ControlChars.NewLine & "Port collection :") Dim myPortArray(myService.Ports.Count) As Port myPortCollection.CopyTo(myPortArray, 0) Dim i1 As Integer For i1 = 0 to myService.Ports.Count -1 Console.WriteLine("Port[" & i1.ToString + "] : " & _ myPortArray(i1).Name) Next Dim myIndexPort As Port = myPortCollection(0) Console.WriteLine(ControlChars.NewLine + ControlChars.NewLine + _ "The index of port '" + myIndexPort.Name + "' is : " + _ myPortCollection.IndexOf(myIndexPort).ToString)
myPortCollection = myService.Ports; // Create an array of Port objects. Console.WriteLine("\nPort collection :"); Port[] myPortArray = new Port[myService.Ports.Count]; myPortCollection.CopyTo(myPortArray, 0); for(int i1=0 ; i1 < myService.Ports.Count ; ++i1) { Console.WriteLine("Port[" + i1+ "] : " + myPortArray[i1].Name); } Port myIndexPort = myPortCollection[0]; Console.WriteLine("\n\nThe index of port '" + myIndexPort.Name + "' is : " + myPortCollection.IndexOf(myIndexPort));
myPortCollection = myService->Ports; // Create an array of Port objects. Console::WriteLine( "\nPort collection :" ); array<Port^>^myPortArray = gcnew array<Port^>(myService->Ports->Count); myPortCollection->CopyTo( myPortArray, 0 ); for ( int i1 = 0; i1 < myService->Ports->Count; ++i1 ) { Console::WriteLine( "Port[{0}] : {1}", i1, myPortArray[ i1 ]->Name ); } Port^ myIndexPort = myPortCollection[ 0 ]; Console::WriteLine( "\n\nThe index of port '{0}' is : {1}", myIndexPort->Name, myPortCollection->IndexOf( myIndexPort ) );
myPortCollection = myService.get_Ports(); // Create an array of Port objects. Console.WriteLine("\nPort collection :"); Port myPortArray[] = new Port[myService.get_Ports().get_Count()]; myPortCollection.CopyTo(myPortArray, 0); for (int i1 = 0; i1 < myService.get_Ports().get_Count(); ++i1) { Console.WriteLine("Port[" + i1 + "] : " + myPortArray[i1].get_Name()); } Port myIndexPort = myPortCollection.get_Item(0); Console.WriteLine("\n\nThe index of port '" + myIndexPort.get_Name() + "' is : " + myPortCollection.IndexOf(myIndexPort));

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


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

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