Class PasswordRequestResponse

Reponse to a password request via a handler.

Inheritance
System.Object
PasswordRequestResponse
Namespace: PSPDFKitFoundation
Assembly: PSPDFKitFoundation.dll
Syntax
public sealed class PasswordRequestResponse

Constructors

PasswordRequestResponse(Boolean, String, Boolean)

Constructs a password request reponse.

Declaration
public PasswordRequestResponse(bool success, string password, bool mayTryAgain)
Parameters
Type Name Description
System.Boolean success

Whether or not the password was successful.

System.String password

The password.

System.Boolean mayTryAgain

Whether or not another attempt is permitted.

Properties

MayTryAgain

If true indicates if the the provider my be queried again for the password.

Declaration
public bool MayTryAgain { get; }
Property Value
Type Description
System.Boolean

Password

The password if successful.

Declaration
public string Password { get; }
Property Value
Type Description
System.String

Success

If true the password request was successful.

Declaration
public bool Success { get; }
Property Value
Type Description
System.Boolean