ServiceDescriptionImporter Class
Exposes a means of generating client proxy classes for XML Web services.
Assembly: System.Web.Services (in System.Web.Services.dll)
| Name | Description | |
|---|---|---|
![]() | ServiceDescriptionImporter() | Initializes a new instance of the ServiceDescriptionImporter class. |
| Name | Description | |
|---|---|---|
![]() | CodeGenerationOptions | Gets or sets various options for code generation. |
![]() | CodeGenerator | Gets or sets the code generator used by the service description importer. |
![]() | ProtocolName | Gets or sets the protocol used to access the described XML Web services. |
![]() | Schemas | Gets the XmlSchemas used by the ServiceDescriptions property. |
![]() | ServiceDescriptions | Gets the collection of ServiceDescription instances to be imported. |
![]() | Style | Gets or sets a value that determines the style of code (client or server) that is generated when the ServiceDescriptions values are imported. |
| Name | Description | |
|---|---|---|
![]() | AddServiceDescription(ServiceDescription, String, String) | Adds the specified ServiceDescription to the collection of ServiceDescriptions values to be imported. |
![]() | Equals(Object) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() ![]() | GenerateWebReferences(WebReferenceCollection, CodeDomProvider, CodeCompileUnit, WebReferenceOptions) | Compiles a collection of Web references to produce a client proxy or a server stub. |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | Import(CodeNamespace, CodeCompileUnit) | Imports the specified ServiceDescriptions values, that generates code as specified by the Style property. |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
The interface to an XML Web service is typically described by a Web Services Description Language (WSDL) file. For example, to obtain a WSDL description of a Web service using ASP.NET exposed at http://localhost/service.asmx, simply navigate to http://localhost/service.asmx?WSDL.
The ServiceDescriptionImporter class allows you to easily import the information contained in a WSDL description into a System.CodeDom.CodeCompileUnit object. By adjusting the value of the Style parameter, you can instruct a ServiceDescriptionImporter instance either to generate a client proxy class that provides the functionality of the Web service by transparently calling it or to generate an abstract class that encapsulates the functionality of the Web service without implementing it.
The code in the resulting CodeCompileUnit object can then either be called directly or exported in the language of your choice.
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
.jpeg?cs-save-lang=1&cs-lang=vb)
.jpeg?cs-save-lang=1&cs-lang=vb)
.jpeg?cs-save-lang=1&cs-lang=vb)
.jpeg?cs-save-lang=1&cs-lang=vb)