5 references to Web
System.Net.Http.Json (5)
System\Net\Http\Json\HttpClientJsonExtensions.cs (2)
20
FromJsonAsyncCore(getMethod, client, requestUri, static (stream, options, cancellation) => JsonSerializer.DeserializeAsync(stream, options.type, options.options ?? JsonSerializerOptions.
Web
, cancellation), (type, options), cancellationToken);
25
FromJsonAsyncCore(getMethod, client, requestUri, static (stream, options, cancellation) => JsonSerializer.DeserializeAsync<TValue>(stream, options ?? JsonSerializerOptions.
Web
, cancellation), options, cancellationToken);
System\Net\Http\Json\HttpContentJsonExtensions.cs (2)
88
return await JsonSerializer.DeserializeAsync(contentStream, type, options ?? JsonSerializerOptions.
Web
, cancellationToken).ConfigureAwait(false);
98
return await JsonSerializer.DeserializeAsync<T>(contentStream, options ?? JsonSerializerOptions.
Web
, cancellationToken).ConfigureAwait(false);
System\Net\Http\Json\JsonHelpers.cs (1)
23
options ??= JsonSerializerOptions.
Web
;