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
51
51
HttpWebRequest OptionsAsync ( Action < HttpResponse > action ) ;
52
52
HttpWebRequest PostAsync ( Action < HttpResponse > action ) ;
53
53
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 ) ;
55
57
56
58
#if FRAMEWORK
57
59
HttpResponse Delete ( ) ;
@@ -60,7 +62,9 @@ public interface IHttp
60
62
HttpResponse Options ( ) ;
61
63
HttpResponse Post ( ) ;
62
64
HttpResponse Put ( ) ;
63
- HttpResponse Patch ( ) ;
65
+ HttpResponse Patch ( ) ;
66
+ HttpResponse Copy ( ) ;
67
+ HttpResponse Move ( ) ;
64
68
65
69
IWebProxy Proxy { get ; set ; }
66
70
#endif
You can’t perform that action at this time.
0 commit comments