Class BankIdSimulatedAppApiClient
Dummy implementation that simulates the BankId App API. Can be used for development and testing purposes.
Inheritance
System.Object
BankIdSimulatedAppApiClient
Assembly: ActiveLogin.Authentication.BankId.Api.dll
Syntax
public class BankIdSimulatedAppApiClient : object, IBankIdAppApiClient
Constructors
|
Improve this Doc
View Source
BankIdSimulatedAppApiClient()
Declaration
public BankIdSimulatedAppApiClient()
|
Improve this Doc
View Source
BankIdSimulatedAppApiClient(List<BankIdSimulatedAppApiClient.CollectState>)
Declaration
public BankIdSimulatedAppApiClient(List<BankIdSimulatedAppApiClient.CollectState> collectStates)
Parameters
|
Improve this Doc
View Source
BankIdSimulatedAppApiClient(String, String)
Declaration
public BankIdSimulatedAppApiClient(string givenName, string surname)
Parameters
Type |
Name |
Description |
System.String |
givenName |
|
System.String |
surname |
|
|
Improve this Doc
View Source
BankIdSimulatedAppApiClient(String, String, String)
Declaration
public BankIdSimulatedAppApiClient(string givenName, string surname, string personalIdentityNumber)
Parameters
Type |
Name |
Description |
System.String |
givenName |
|
System.String |
surname |
|
System.String |
personalIdentityNumber |
|
|
Improve this Doc
View Source
BankIdSimulatedAppApiClient(String, String, String, List<BankIdSimulatedAppApiClient.CollectState>)
Declaration
public BankIdSimulatedAppApiClient(string givenName, string surname, string personalIdentityNumber, List<BankIdSimulatedAppApiClient.CollectState> collectStates)
Parameters
|
Improve this Doc
View Source
BankIdSimulatedAppApiClient(String, String, String, String)
Declaration
public BankIdSimulatedAppApiClient(string givenName, string surname, string name, string personalIdentityNumber)
Parameters
Type |
Name |
Description |
System.String |
givenName |
|
System.String |
surname |
|
System.String |
name |
|
System.String |
personalIdentityNumber |
|
|
Improve this Doc
View Source
BankIdSimulatedAppApiClient(String, String, String, String, String, String, List<BankIdSimulatedAppApiClient.CollectState>)
Declaration
public BankIdSimulatedAppApiClient(string givenName, string surname, string name, string personalIdentityNumber, string bankIdIssueDate, string uniqueHardwareId, List<BankIdSimulatedAppApiClient.CollectState> collectStates)
Parameters
Type |
Name |
Description |
System.String |
givenName |
|
System.String |
surname |
|
System.String |
name |
|
System.String |
personalIdentityNumber |
|
System.String |
bankIdIssueDate |
|
System.String |
uniqueHardwareId |
|
List<BankIdSimulatedAppApiClient.CollectState> |
collectStates |
|
Fields
|
Improve this Doc
View Source
Version
Declaration
public const string Version = null
Field Value
Type |
Description |
System.String |
|
Properties
|
Improve this Doc
View Source
Delay
Declaration
public TimeSpan Delay { get; set; }
Property Value
Type |
Description |
TimeSpan |
|
Methods
|
Improve this Doc
View Source
AuthAsync(AuthRequest)
Declaration
public async Task<AuthResponse> AuthAsync(AuthRequest request)
Parameters
Returns
|
Improve this Doc
View Source
CancelAsync(CancelRequest)
Declaration
public async Task<CancelResponse> CancelAsync(CancelRequest request)
Parameters
Returns
|
Improve this Doc
View Source
CollectAsync(CollectRequest)
Declaration
public async Task<CollectResponse> CollectAsync(CollectRequest request)
Parameters
Returns
|
Improve this Doc
View Source
PaymentAsync(PaymentRequest)
Declaration
public async Task<PaymentResponse> PaymentAsync(PaymentRequest request)
Parameters
Returns
|
Improve this Doc
View Source
PhoneAuthAsync(PhoneAuthRequest)
Declaration
public async Task<PhoneAuthResponse> PhoneAuthAsync(PhoneAuthRequest request)
Parameters
Returns
|
Improve this Doc
View Source
PhoneSignAsync(PhoneSignRequest)
Declaration
public async Task<PhoneSignResponse> PhoneSignAsync(PhoneSignRequest request)
Parameters
Returns
|
Improve this Doc
View Source
SignAsync(SignRequest)
Declaration
public async Task<SignResponse> SignAsync(SignRequest request)
Parameters
Returns
Implements