/// <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); }
/// <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)); }