ImportCollection.IndexOf Method
.NET Framework 3.0
Searches for the specified Import and returns the zero-based index of the first occurrence within the collection.
Namespace: System.Web.Services.Description
Assembly: System.Web.Services (in system.web.services.dll)
Assembly: System.Web.Services (in system.web.services.dll)
The following example demonstrates the use of the IndexOf method.
// Get Import by Index. Import^ myImport = myServiceDescription->Imports[ myServiceDescription->Imports->Count - 1 ]; Console::WriteLine( "Import by Index..." ); if ( myImportCollection->Contains( myImport ) ) { Console::WriteLine( "Import Namespace ' {0} ' is found in 'ImportCollection'.", myImport->Namespace ); Console::WriteLine( "Index of '{0}' in 'ImportCollection' = {1}", myImport->Namespace, myImportCollection->IndexOf( myImport ) ); Console::WriteLine( "Deleting Import from 'ImportCollection'..." ); myImportCollection->Remove( myImport ); if ( myImportCollection->IndexOf( myImport ) == -1 ) Console::WriteLine( "Import is successfully removed from Import Collection." ); }
// Get Import by Index.
Import myImport = myServiceDescription.get_Imports().
get_Item(myServiceDescription.get_Imports().get_Count() - 1);
Console.WriteLine("Import by Index...");
if (myImportCollection.Contains(myImport)) {
Console.WriteLine("Import Namespace '" + myImport.get_Namespace()
+ "' is found in 'ImportCollection'.");
Console.WriteLine("Index of '" + myImport.get_Namespace()
+ "' in 'ImportCollection' = "
+ myImportCollection.IndexOf(myImport));
Console.WriteLine("Deleting Import from 'ImportCollection'...");
myImportCollection.Remove(myImport);
if (myImportCollection.IndexOf(myImport) == -1) {
Console.WriteLine(
"Import is successfully removed from Import Collection.");
}
}
Windows 98, Windows Server 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
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: