예제 #1
0
 protected virtual void OnError(RoutingErrorType errorType, string message, HTTPRequest request)
 {
     if (Error != null)
     {
         Error(this, new RoutingErrorEventArgs(errorType, message, request));
     }
 }
예제 #2
0
 public RoutingErrorEventArgs(RoutingErrorType type, string error, HTTPRequest request)
 {
     Type = type;
     Error = error;
     Request = request;
 }
예제 #3
0
 public RoutingErrorEventArgs(RoutingErrorType type, string error, HTTPRequest request)
 {
     Type    = type;
     Error   = error;
     Request = request;
 }
예제 #4
0
 protected virtual void OnError(RoutingErrorType errorType, string message, HTTPRequest request)
 {
     if (Error != null)
         Error(this, new RoutingErrorEventArgs(errorType, message, request));
 }