@@ -62,6 +62,10 @@ protected override void Dispose(bool disposing) { }
6262 public System . Threading . Tasks . Task < System . IO . Stream > GetStreamAsync ( System . Uri requestUri ) { throw null ; }
6363 public System . Threading . Tasks . Task < string > GetStringAsync ( string requestUri ) { throw null ; }
6464 public System . Threading . Tasks . Task < string > GetStringAsync ( System . Uri requestUri ) { throw null ; }
65+ public System . Threading . Tasks . Task < System . Net . Http . HttpResponseMessage > PatchAsync ( string requestUri , System . Net . Http . HttpContent content ) { throw null ; }
66+ public System . Threading . Tasks . Task < System . Net . Http . HttpResponseMessage > PatchAsync ( string requestUri , System . Net . Http . HttpContent content , System . Threading . CancellationToken cancellationToken ) { throw null ; }
67+ public System . Threading . Tasks . Task < System . Net . Http . HttpResponseMessage > PatchAsync ( System . Uri requestUri , System . Net . Http . HttpContent content ) { throw null ; }
68+ public System . Threading . Tasks . Task < System . Net . Http . HttpResponseMessage > PatchAsync ( System . Uri requestUri , System . Net . Http . HttpContent content , System . Threading . CancellationToken cancellationToken ) { throw null ; }
6569 public System . Threading . Tasks . Task < System . Net . Http . HttpResponseMessage > PostAsync ( string requestUri , System . Net . Http . HttpContent content ) { throw null ; }
6670 public System . Threading . Tasks . Task < System . Net . Http . HttpResponseMessage > PostAsync ( string requestUri , System . Net . Http . HttpContent content , System . Threading . CancellationToken cancellationToken ) { throw null ; }
6771 public System . Threading . Tasks . Task < System . Net . Http . HttpResponseMessage > PostAsync ( System . Uri requestUri , System . Net . Http . HttpContent content ) { throw null ; }
@@ -150,6 +154,7 @@ public HttpMethod(string method) { }
150154 public static System . Net . Http . HttpMethod Head { get { throw null ; } }
151155 public string Method { get { throw null ; } }
152156 public static System . Net . Http . HttpMethod Options { get { throw null ; } }
157+ public static System . Net . Http . HttpMethod Patch { get { throw null ; } }
153158 public static System . Net . Http . HttpMethod Post { get { throw null ; } }
154159 public static System . Net . Http . HttpMethod Put { get { throw null ; } }
155160 public static System . Net . Http . HttpMethod Trace { get { throw null ; } }
0 commit comments