Interface IPasswordProvider
Provides an interface for requesting a password.
Namespace: PSPDFKitFoundation
Assembly: PSPDFKitFoundation.dll
Syntax
public interface IPasswordProvider
Properties
ValidPassword
This property can be set to true to indicate to the provider that the password in the last response is valid. If valid the provider may choose to cache the response.
Declaration
bool ValidPassword { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Methods
OnRequestPassword()
Call this to request a password.
Declaration
IAsyncOperation<PasswordRequestResponse> OnRequestPassword()
Returns
Type | Description |
---|---|
Windows.Foundation.IAsyncOperation<PasswordRequestResponse> |