ServiceDescription::Services Property
.NET Framework (current version)
Gets the collection of Service instances contained in the ServiceDescription.
Assembly: System.Web.Services (in System.Web.Services.dll)
Property Value
Type: System.Web.Services.Description::ServiceCollection^A collection of service instances contained in the service description.
The ServiceCollection returned by this property corresponds to the list of service elements enclosed by the Web Services Description Language (WSDL) definitions root element. For more information about WSDL, see the specification at http://www.w3.org/TR/wsdl/.
// Read a ServiceDescription from existing WSDL. ServiceDescription^ myServiceDescription = ServiceDescription::Read( "Input_CS.wsdl" ); myServiceDescription->TargetNamespace = "http://tempuri.org/"; // Get the ServiceCollection of the ServiceDescription. ServiceCollection^ myServiceCollection = myServiceDescription->Services; // Remove the Service at index 0 of the collection. myServiceCollection->Remove( myServiceDescription->Services[ 0 ] );
.NET Framework
Available since 1.1
Available since 1.1
Show: