You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using Uno.WebAssembly.Net.Http;
var request = new HttpRequestMessage(HttpMethod.Get, "[http://www.google.com/complete/search?output=toolbar&q={0}&hl=en/](http://www.google.com/complete/search?output=toolbar&q=%7b0%7d&hl=en/)");
request.SetBrowserRequestMode(BrowserRequestMode.NoCors);
request.SetBrowserRequestCache(BrowserRequestCache.NoStore);
//optional
using (var httpClient = new HttpClient()){
var response = await httpClient.SendAsync(request);
var content = await response.Content.ReadAsStringAsync();
}
The text was updated successfully, but these errors were encountered:
https://nuget.info/packages/Uno.Wasm.HttpRequestMessageExtensions/8.0.0-dev.92
In the csproj:
The text was updated successfully, but these errors were encountered: