使用 Flurl 时如何使用自定义动词发出 HTTP 请求?

How to make a HTTP request with a custom verb when using Flurl?

我需要发送 OPTIONS 请求。使用Flurl时如何构建客户端?

使用SendAsync指定不直接支持的动词:

"http://myapi.com".SendAsync(System.Net.Http.HttpMethod.Options);

如果您需要发送内容(可能与 OPTIONS 无关),有一个可选的 HttpContent arg,还有 SendJsonAsyncSendStringAsyncSendUrlEncodedAsync使这更容易的扩展。