For Babelfish Release 1.12.4.4

UserAuthentication(String, String, String, String, String, DateTime, DateTime) Constructor

Constructs a new User Authentication instance. To complete the re-authentication process, user should call .RefreshedTokens(). After the contructor returns, call InitializeAsync() to complete the constructor / initialziation process.

Definition

Namespace: Scopos.BabelFish.Runtime.Authentication
Assembly: BabelFish (in BabelFish.dll) Version: 1.12.4.4+d2f3bdeedfc7a151494a378da1156fb690afa333
C#
public UserAuthentication(
	string email,
	string userId,
	string refreshToken,
	string accessToken,
	string idToken,
	DateTime expirationTime,
	DateTime issuedTime
)

Parameters

email  String
userId  String
 
refreshToken  String
accessToken  String
idToken  String
expirationTime  DateTime
issuedTime  DateTime

Exceptions

DeviceNotKnownExceptionThrown if the device is not known to be assciated with the user.
AuthenticationExceptionThrown if the user could not be re-authenticated.

See Also