Type of the service supported by extension project
Namespace:
Hummingbird.TestFramework.ExtensionProject
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax [SerializableAttribute]
[DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")]
public enum ServiceType
<SerializableAttribute>
<DataContractAttribute(Namespace := "http://www.hummingbird-alm.com/testframework/201610")>
Public Enumeration ServiceType
[SerializableAttribute]
[DataContractAttribute(Namespace = L"http://www.hummingbird-alm.com/testframework/201610")]
public enum class ServiceType
[<SerializableAttribute>]
[<DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")>]
type ServiceType
Members
| Member name | Value | Description |
---|
| SOAP | 0 |
The classique SOAP web services, defined by WSDL
|
| SWAGGER | 1 |
REST Web services defined with Swagger
|
| REST_XML | 2 |
REST Web services where requests/responses are based on XML document, and types are defined in XSD files
|
| REST_JSON | 3 |
REST Web Services where requests/responses are based on JSON object. and types are defined in JSON files
|
See Also