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