ImportCollection Class
.NET Framework 3.0
Provides a collection of instances of the Import class representing documents to be imported into the XML Web service. This class cannot be inherited.
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 a typical use of the ImportCollection class.
#using <System.dll> #using <System.Web.Services.dll> #using <System.Xml.dll> using namespace System; using namespace System::Web::Services::Description; using namespace System::Xml; int main() { ServiceDescription^ myServiceDescription = ServiceDescription::Read( "StockQuoteService_cpp.wsdl" ); Console::WriteLine( " ImportCollection Sample " ); // Get Import Collection. ImportCollection^ myImportCollection = myServiceDescription->Imports; Console::WriteLine( "Total Imports in the document = {0}", myServiceDescription->Imports->Count ); // Print 'Import' properties to console. for ( int i = 0; i < myImportCollection->Count; ++i ) Console::WriteLine( "\tImport Namespace : {0} Import Location : {1} ", myImportCollection[ i ]->Namespace, myImportCollection[ i ]->Location ); array<Import^>^myImports = gcnew array<Import^>(myServiceDescription->Imports->Count); // Copy 'ImportCollection' to an array. myServiceDescription->Imports->CopyTo( myImports, 0 ); Console::WriteLine( "Imports that are copied to Importarray ..." ); for ( int i = 0; i < myImports->Length; ++i ) Console::WriteLine( "\tImport Namespace : {0} Import Location : {1} ", myImports[ i ]->Namespace, myImports[ i ]->Location ); // 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." ); } }
import System.*;
import System.Web.Services.Description.*;
import System.Xml.*;
class ServiceDescriptionImportCollection
{
public static void main(String[] args)
{
ServiceDescription myServiceDescription
= ServiceDescription.Read("StockQuoteService_jsl.wsdl");
Console.WriteLine(" ImportCollection Sample ");
// Get Import Collection.
ImportCollection myImportCollection
= myServiceDescription.get_Imports();
Console.WriteLine("Total Imports in the document = "
+ myServiceDescription.get_Imports().get_Count());
// Print 'Import' properties to console.
for (int i = 0; i < myImportCollection.get_Count(); ++i) {
Console.WriteLine("\tImport Namespace :{0} Import Location :{1} ",
myImportCollection.get_Item(i).get_Namespace(),
myImportCollection.get_Item(i).get_Location());
}
Import myImports[] = new Import[myServiceDescription.
get_Imports().get_Count()];
// Copy 'ImportCollection' to an array.
myServiceDescription.get_Imports().CopyTo(myImports, 0);
Console.WriteLine("Imports that are copied to Importarray ...");
for (int i = 0; i < myImports.length; ++i) {
Console.WriteLine("\tImport Namespace :{0} Import Location :{1} ",
myImports[i].get_Namespace(), myImports[i].get_Location());
}
// 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.");
}
}
} //main
} //ServiceDescriptionImportCollection
System.Object
System.Collections.CollectionBase
System.Web.Services.Description.ServiceDescriptionBaseCollection
System.Web.Services.Description.ImportCollection
System.Collections.CollectionBase
System.Web.Services.Description.ServiceDescriptionBaseCollection
System.Web.Services.Description.ImportCollection
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: