ServiceDescriptionImporter.Style Property

Definition

Gets or sets a value that determines the style of code (client or server) that is generated when the ServiceDescriptions values are imported.

public System.Web.Services.Description.ServiceDescriptionImportStyle Style { get; set; }

Property Value

One of the ServiceDescriptionImportStyle values. The default is Client.

Examples

The following example illustrates the use of the Style property.

// Generate a proxy client.
importer.Style = ServiceDescriptionImportStyle.Client;

Remarks

If the Style property is set to Client, the ServiceDescriptionImporter generates client proxy classes that provide the functionality of the described Web services by calling them.

If the Style property is set to Server, the ServiceDescriptionImporter instance generates abstract classes that represent the functionality of the described XML Web services without implementing them. You can then implement them by writing classes that inherit from these abstract classes and implement the relevant methods.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1