RequestOptionsUsePreemptiveAuthentication Property |
Gets or sets a value indicating whether Preemptive authentication is used.
Namespace:
Hummingbird.TestFramework.Services
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax [DataMemberAttribute]
public bool UsePreemptiveAuthentication { get; set; }
<DataMemberAttribute>
Public Property UsePreemptiveAuthentication As Boolean
Get
Set
public:
[DataMemberAttribute]
property bool UsePreemptiveAuthentication {
bool get ();
void set (bool value);
}
[<DataMemberAttribute>]
member UsePreemptiveAuthentication : bool with get, set
Property Value
Type:
Booleantrue if preemptive authentication is used; otherwise,
false.
Remarks
It is not recommended to use Preemptive Authentication to web services. if misused or used incorrectly the preemptive authentication can lead to significant security issues, such as sending user credentials in clear text to an unauthorized third party. Therefore, users are expected to evaluate potential benefits of preemptive authentication versus security risks in the context of their specific application environment.
See Also