ServiceDescriptionImporter::Import Method
Imports the specified ServiceDescriptions values, that generates code as specified by the Style property.
Assembly: System.Web.Services (in System.Web.Services.dll)
public:
ServiceDescriptionImportWarnings Import(
CodeNamespace^ codeNamespace,
CodeCompileUnit^ codeCompileUnit
)
Parameters
- codeNamespace
- Type: System.CodeDom::CodeNamespace
The namespace into which the ServiceDescriptions values are imported.
- codeCompileUnit
- Type: System.CodeDom::CodeCompileUnit
The CodeCompileUnit instance in which the code that represents the ServiceDescriptions value is generated.
Return Value
Type: System.Web.Services.Description::ServiceDescriptionImportWarningsA ServiceDescriptionImportWarnings value that describes any error that occurred; or 0 if no error occurred.
After you have specified the ServiceDescriptions values to import and the Style property of the code to generate, call the Import method to initiate code generation.
The following example illustrates the use of the Import method.
// Import the service into the Code-DOM tree. This creates proxy code // that uses the service. ServiceDescriptionImportWarnings warning = importer->Import(nmspace,unit); if ( warning == (ServiceDescriptionImportWarnings)0 ) { // Generate and print the proxy code in C#. CodeDomProvider^ provider = CodeDomProvider::CreateProvider( "CSharp" ); ICodeGenerator^ generator = provider->CreateGenerator(); generator->GenerateCodeFromCompileUnit( unit, Console::Out, gcnew CodeGeneratorOptions ); } else { // Print an error message. Console::WriteLine( warning ); }
// Import the service into the Code-DOM tree. This creates proxy code
// that uses the service.
ServiceDescriptionImportWarnings warning = importer->Import(nmspace,unit);
if (warning == 0)
{
// Generate and print the proxy code in C#.
CodeDomProvider* provider = CodeDomProvider::CreateProvider(S"CSharp");
ICodeGenerator* generator = provider->CreateGenerator();
generator->GenerateCodeFromCompileUnit(unit, Console::Out, new CodeGeneratorOptions() );
}
else
{
// Print an error message.
Console::WriteLine(warning);
}
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.