File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,9 @@ public interface IHttp
5151 HttpWebRequest OptionsAsync ( Action < HttpResponse > action ) ;
5252 HttpWebRequest PostAsync ( Action < HttpResponse > action ) ;
5353 HttpWebRequest PutAsync ( Action < HttpResponse > action ) ;
54- HttpWebRequest PatchAsync ( Action < HttpResponse > action ) ;
54+ HttpWebRequest PatchAsync ( Action < HttpResponse > action ) ;
55+ HttpWebRequest CopyAsync ( Action < HttpResponse > action ) ;
56+ HttpWebRequest MoveAsync ( Action < HttpResponse > action ) ;
5557
5658#if FRAMEWORK
5759 HttpResponse Delete ( ) ;
@@ -60,7 +62,9 @@ public interface IHttp
6062 HttpResponse Options ( ) ;
6163 HttpResponse Post ( ) ;
6264 HttpResponse Put ( ) ;
63- HttpResponse Patch ( ) ;
65+ HttpResponse Patch ( ) ;
66+ HttpResponse Copy ( ) ;
67+ HttpResponse Move ( ) ;
6468
6569 IWebProxy Proxy { get ; set ; }
6670#endif
You can’t perform that action at this time.
0 commit comments