ServiceDescriptionImporter.Import Method (CodeNamespace, CodeCompileUnit)
.NET Framework (current version)
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 == 0) { // Generate and print the proxy code in C#. CodeDomProvider provider = CodeDomProvider.CreateProvider("CSharp"); provider.GenerateCodeFromCompileUnit(unit, Console.Out, new CodeGeneratorOptions() ); } else { // Print an error message. Console.WriteLine(warning); }
.NET Framework
Available since 1.1
Available since 1.1
Show: