Skip to content

OptionsAsync

Troy Willmot edited this page Oct 16, 2016 · 1 revision

Summary

Makes an HTTP call with the OPTIONS verb. Similar to the native GetAsync/PostAsync/DeleteAsync methods.

Sample

var client = new HttpClient();
await client.OptionsAsync(new Uri("http://www.myserver.com/endpoint"));

Clone this wiki locally