AK.F1.Timing.Live.Encryption.LiveDecrypterFactory.LiveDecrypterFactory C# (CSharp) Method

LiveDecrypterFactory() public method

Initialises a new instance of the LiveDecrypterFactory class and specifies the user's AuthenticationToken
/// Thrown when is . ///
public LiveDecrypterFactory ( AuthenticationToken token ) : System
token AuthenticationToken The user's .
return System
        public LiveDecrypterFactory(AuthenticationToken token)
        {
            Guard.NotNull(token, "token");

            AuthToken = token.Token;
        }