merge and property
This commit is contained in:
2025-12-24 17:36:01 +09:00
parent d4764e304f
commit 6b78b68229
109 changed files with 14167 additions and 625 deletions

View File

@@ -126,6 +126,8 @@ namespace Best.HTTP
/// <returns>An HTTPRequest instance for the PUT request.</returns>
public static HTTPRequest CreatePut(Uri uri) => new HTTPRequest(uri, HTTPMethods.Put);
public static HTTPRequest CreatePatch(string uri) => new HTTPRequest(uri, HTTPMethods.Patch);
/// <summary>
/// Creates an <see cref="HTTPMethods.Put">HTTP PUT</see> request with the specified URL and registers a callback function to be called
/// when the request is fully processed.