public BasicAuthEventArgs(HttpStatusCode statusCode, string statusDescription, Schema.Identity result)
     : base(null, false, null, statusCode, statusDescription)
 {
     this.Result = result;
 }
 public BasicAuthEventArgs(Exception error, bool cancelled, object userState, HttpStatusCode statusCode, string statusDescription, Schema.Identity result)
     : base(error, cancelled, userState, statusCode, statusDescription)
 {
     this.Result = result;
 }