AuthenticationModes Enumeration |
The mode of authentication when calling the target. AuthenticationMode is use only on HTTP based services. It is implemented in HttpClient and SoapClient.
Namespace:
Hummingbird.TestFramework.Services
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax [DataContractAttribute]
public enum AuthenticationModes
<DataContractAttribute>
Public Enumeration AuthenticationModes
[DataContractAttribute]
public enum class AuthenticationModes
[<DataContractAttribute>]
type AuthenticationModes
Members
| Member name | Value | Description |
---|
| Anonymous | 0 |
Calling the web service without using a mode of authentication.
|
| Basic | 1 |
Calling the web service by using HTTP Basic Authentication. in this case, user should specify the profile when sends a request.
|
| Digest | 2 |
Calling the web service by using HTTP Digest Authentication. in this case, user should specify the profile when sends a request.
|
| Windows | 4 |
Calling the web service by using user's current Windows Credential with Windows. Hummingbird uses only current user's credential, no profile should be set.
|
| UserName | 8 |
Calling the web service by using UserName message security.
|
| ClientCertificate | 16 |
Calling the web service by using an X509 Certificate. In this case, user must assign a x509 certificate from the Certificate store.
|
| Ntlm | 32 |
Calling the web service by using user's current Windows Credential. Hummingbird uses only current user's credential, no profile should be set.
|
| Bearer | 64 |
Calling the web service by using the HTTP Bearer authentication. In this case, user should specify a Token
|
See Also