ServiceDescriptionImporter Constructor

Definitie

Initialiseert een nieuw exemplaar van de ServiceDescriptionImporter klasse.

public:
 ServiceDescriptionImporter();
public ServiceDescriptionImporter();
Public Sub New ()

Voorbeelden

In het volgende voorbeeld ziet u het gebruik van deze constructor.

// Initialize a service description importer.
ServiceDescriptionImporter^ importer = gcnew ServiceDescriptionImporter;
importer->ProtocolName = "Soap12"; // Use SOAP 1.2.
importer->AddServiceDescription( description, nullptr, nullptr );
// Initialize a service description importer.
ServiceDescriptionImporter importer = new ServiceDescriptionImporter();
importer.ProtocolName = "Soap12";  // Use SOAP 1.2.
importer.AddServiceDescription(description,null,null);

Van toepassing op