For Babelfish Release 1.11.1.3

UserAuthentication(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.11.1.4+b1da393815f6638555a663d9a94167ecabea5695
C#
public UserAuthentication(
	string email,
	string refreshToken,
	string accessToken,
	string idToken,
	DateTime expirationTime,
	DateTime issuedTime
)

Parameters

email  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