5 instantiations of FormUrlEncodedContent
Aspire.Hosting.Azure (1)
AcrLoginService.cs (1)
108using var content = new FormUrlEncodedContent(formData);
Aspire.Playground.Tests (2)
Infrastructure\DistributedApplicationExtensions.cs (2)
220using var emptyDbContextContent = new FormUrlEncodedContent([new("context", "")]); 251using var content = new FormUrlEncodedContent([new("context", dbContextType.AssemblyQualifiedName)]);
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthHandler.cs (1)
216var requestContent = new FormUrlEncodedContent(tokenRequestParameters!);
Microsoft.NET.Build.Containers (1)
AuthHandshakeMessageHandler.cs (1)
485Content = new FormUrlEncodedContent(parameters)
7 references to FormUrlEncodedContent
Aspire.Hosting.Azure (1)
AcrLoginService.cs (1)
108using var content = new FormUrlEncodedContent(formData);
Aspire.Playground.Tests (2)
Infrastructure\DistributedApplicationExtensions.cs (2)
220using var emptyDbContextContent = new FormUrlEncodedContent([new("context", "")]); 251using var content = new FormUrlEncodedContent([new("context", dbContextType.AssemblyQualifiedName)]);
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthHandler.cs (1)
216var requestContent = new FormUrlEncodedContent(tokenRequestParameters!);
netstandard (1)
netstandard.cs (1)
1097[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.Http.FormUrlEncodedContent))]
System.Net.Http (2)
System\Net\Http\FormUrlEncodedContent.cs (2)
92GetType() == typeof(FormUrlEncodedContent) ? SerializeToStreamAsyncCore(stream, cancellationToken) : 96GetType() == typeof(FormUrlEncodedContent) ? CreateMemoryStreamForByteArray() : // type check ensures we use possible derived type's CreateContentReadStreamAsync override