[Modify] Remove it
This commit is contained in:
@@ -765,11 +765,6 @@ namespace WebSocketSharp.Server
|
||||
/// </summary>
|
||||
public event EventHandler<HttpRequestEventArgs> OnOptions;
|
||||
|
||||
/// <summary>
|
||||
/// Occurs when the server receives an HTTP PATCH request.
|
||||
/// </summary>
|
||||
public event EventHandler<HttpRequestEventArgs> OnPatch;
|
||||
|
||||
/// <summary>
|
||||
/// Occurs when the server receives an HTTP POST request.
|
||||
/// </summary>
|
||||
@@ -910,9 +905,7 @@ namespace WebSocketSharp.Server
|
||||
? OnTrace
|
||||
: method == "CONNECT"
|
||||
? OnConnect
|
||||
: method == "PATCH"
|
||||
? OnPatch
|
||||
: null;
|
||||
: null;
|
||||
|
||||
if (evt != null)
|
||||
evt (this, new HttpRequestEventArgs (context, _docRootPath));
|
||||
|
Reference in New Issue
Block a user