コード例 #1
0
 /// <summary>
 /// Executes the ranged PUT method on the resource.
 /// </summary>
 /// <param name="Request">HTTP Request</param>
 /// <param name="Response">HTTP Response</param>
 /// <param name="Interval">Content byte range.</param>
 /// <exception cref="HttpException">If an error occurred when processing the method.</exception>
 public void PUT(HttpRequest Request, HttpResponse Response, ContentByteRangeInterval Interval)
 {
     this.Request("PUT", Request, Response);
 }
コード例 #2
0
 /// <summary>
 /// Executes the ranged PUT method on the resource.
 /// </summary>
 /// <param name="Request">HTTP Request</param>
 /// <param name="Response">HTTP Response</param>
 /// <param name="Interval">Content byte range.</param>
 /// <exception cref="HttpException">If an error occurred when processing the method.</exception>
 public Task PUT(HttpRequest Request, HttpResponse Response, ContentByteRangeInterval Interval)
 {
     return(this.Request("PUT", Request, Response));
 }