diff --git a/websocket-sharp/Server/HttpRequestEventArgs.cs b/websocket-sharp/Server/HttpRequestEventArgs.cs
index ee76cbab3..4efd9908d 100644
--- a/websocket-sharp/Server/HttpRequestEventArgs.cs
+++ b/websocket-sharp/Server/HttpRequestEventArgs.cs
@@ -75,6 +75,19 @@ internal HttpRequestEventArgs (
 
     #region Public Properties
 
+    /// 
+    /// Gets the http context.
+    /// 
+    ///
+    /// A  that provides the methods and
+    /// properties for the http context .
+    /// 
+    public HttpListenerContext Context {
+      get {
+        return _context;
+      }
+    }
+    
     /// 
     /// Gets the request data sent from a client.
     ///