From a00a0ed1e9f773a2ac40414050b378d1f2f6fafb Mon Sep 17 00:00:00 2001 From: xieguigang Date: Mon, 21 May 2018 17:02:37 +0800 Subject: [PATCH] handling put protocol --- RQL/RESTProvider.vb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/RQL/RESTProvider.vb b/RQL/RESTProvider.vb index 93a6b60..d5b4186 100644 --- a/RQL/RESTProvider.vb +++ b/RQL/RESTProvider.vb @@ -144,4 +144,8 @@ Public Class RESTProvider : Inherits HttpServer Public Overrides Sub handleOtherMethod(p As HttpProcessor) End Sub + + Public Overrides Sub handlePUTMethod(p As HttpProcessor, inputData As MemoryStream) + Throw New NotImplementedException() + End Sub End Class