public AuthenticationContextCommand(CommandType commandType, CommandArguments arguments)
 {
     this.CommandType = commandType;
     this.Arguments = arguments;
 }
 internal static async Task<AuthenticationResultProxy> AddCommandAndRunAsync(
     CommandType commandType,
     CommandArguments commandArguments)
 {
     CommandProxy.AddCommand(new AuthenticationContextCommand(commandType, commandArguments));
     return await RunCommandsAsync();
 }
 public AuthenticationContextCommand(CommandType commandType, CommandArguments arguments)
 {
     this.CommandType = commandType;
     this.Arguments   = arguments;
 }