ServiceDescriptionImporter.Style Property
.NET Framework 3.0
Gets or sets a value that determines the style of code (client or server) that is generated when the ServiceDescriptions values are imported.
Namespace: System.Web.Services.Description
Assembly: System.Web.Services (in system.web.services.dll)
Assembly: System.Web.Services (in system.web.services.dll)
public: property ServiceDescriptionImportStyle Style { ServiceDescriptionImportStyle get (); void set (ServiceDescriptionImportStyle value); }
/** @property */ public ServiceDescriptionImportStyle get_Style () /** @property */ public void set_Style (ServiceDescriptionImportStyle value)
public function get Style () : ServiceDescriptionImportStyle public function set Style (value : ServiceDescriptionImportStyle)
Not applicable.
Property Value
One of the ServiceDescriptionImportStyle values. The default is Client.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.
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: