Class AuthenticateWorkerStatus
Status information about a worker authentication.
[DataContract]
public class AuthenticateWorkerStatus
- Inheritance
-
AuthenticateWorkerStatus
- Inherited Members
Constructors
AuthenticateWorkerStatus()
Initializes a new instance of the AuthenticateWorkerStatus class representing a not-authenticated status.
public AuthenticateWorkerStatus()
AuthenticateWorkerStatus(Worker)
Initializes a new instance of the AuthenticateWorkerStatus class representing an authenticated status.
public AuthenticateWorkerStatus(Worker worker)
Parameters
worker
Worker
Exceptions
- ArgumentNullException
worker
is null.
Properties
Authenticated
Gets whether the worker was authenticated.
[DataMember]
public bool Authenticated { get; }
Property Value
ExtensionData
Gets or sets the structure that contains extra data.
public virtual ExtensionDataObject ExtensionData { get; set; }
Property Value
Worker
Gets or sets the worker. This will be null if the worker was not authenticated.
[DataMember]
public Worker Worker { get; }