This documentation is archived and is not being maintained.
ServiceDescriptionImportStyle Enumeration
Visual Studio 2010
Specifies whether the import is made to the server or to the client computer.
Assembly: System.Web.Services (in System.Web.Services.dll)
An import made to the client computer generates a proxy class with synchronous and asynchronous methods to invoke each method within an XML Web service. A server import, on the other hand, generates an abstract class with abstract members, which you must override to provide the implementation you need.
#using <System.Web.Services.dll> #using <System.dll> #using <System.Xml.dll> using namespace System; using namespace System::Web::Services::Description; int main() { try { ServiceDescription^ myServiceDescription = ServiceDescription::Read( "Sample_cpp.wsdl" ); ServiceDescriptionImporter^ myImporter = gcnew ServiceDescriptionImporter; myImporter->ProtocolName = "Soap"; myImporter->AddServiceDescription( myServiceDescription, "", "" ); ServiceDescriptionImportStyle myStyle = myImporter->Style; Console::WriteLine( "Import style: {0}", myStyle ); } catch ( Exception^ e ) { Console::WriteLine( "Following exception was thrown: {0}", e ); } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: