|
|
|
|
@ -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,8 +905,6 @@ namespace WebSocketSharp.Server
|
|
|
|
|
? OnTrace
|
|
|
|
|
: method == "CONNECT"
|
|
|
|
|
? OnConnect
|
|
|
|
|
: method == "PATCH"
|
|
|
|
|
? OnPatch
|
|
|
|
|
: null;
|
|
|
|
|
|
|
|
|
|
if (evt != null)
|
|
|
|
|
|