AK.F1.Timing.F1Timing.Live.Login C# (CSharp) Method

Login() public static method

Logs into the live-timing service using the specified credentials.
/// Thrown when or is /// . /// /// Thrown when or is empty. /// /// Thrown when an IO error whilst connecting to the live messages stream. /// /// Thrown when the supplied credentials were rejected by the live-timing site. ///
public static Login ( string username, string password ) : AuthenticationToken
username string The user's F1 live-timing username.
password string The user's F1 live-timing password.
return AuthenticationToken
            public static AuthenticationToken Login(string username, string password)
            {
                return LiveAuthenticationService.Login(username, password);
            }