public void LiveUtility_ValidateNotNullParameter_Normal()
 {
     LiveUtility.ValidateNotNullParameter("4303432830243", "client_id");
 }
 /// <summary>
 /// Initializes the LiveAuthClient instance.
 /// This will trigger retrieving token with refresh token process if the app provides the refresh token via
 /// IRefreshTokenHandler.RetrieveRefreshTokenAsync method.
 /// </summary>
 /// <param name="scopes">The list of offers that the application is requesting user to consent for.</param>
 /// <returns>An async Task instance.</returns>
 public Task <LiveLoginResult> IntializeAsync(IEnumerable <string> scopes)
 {
     LiveUtility.ValidateNotNullParameter(scopes, "scopes");
     return(this.authClient.InitializeAsync(scopes));
 }