17 references to Dictionary
Aspire.Cli.Tests (1)
Projects\AppHostServerSessionTests.cs (1)
611: new Dictionary<string, string>(environmentVariables);
Aspire.Hosting.Azure.PostgreSQL (1)
AzurePostgresFlexibleServerResource.cs (1)
294: new Dictionary<string, ReferenceExpression>(
Aspire.Hosting.Azure.Sql (1)
AzureSqlServerResource.cs (1)
515var result = new Dictionary<string, ReferenceExpression>(
dotnet (1)
Commands\Workload\List\InstalledWorkloadsCollection.cs (1)
27_workloads = new Dictionary<string, string>(workloadIds.Select(id => new KeyValuePair<string, string>(id.ToString(), installationSource)));
dotnet-aot (1)
src\sdk\src\Cli\dotnet\Commands\Workload\List\InstalledWorkloadsCollection.cs (1)
27_workloads = new Dictionary<string, string>(workloadIds.Select(id => new KeyValuePair<string, string>(id.ToString(), installationSource)));
ILCompiler.Compiler (1)
Compiler\DependencyAnalysis\DehydratedDataNode.cs (1)
105var relocs = new Dictionary<ISymbolNode, int>(relocSort);
Microsoft.AspNetCore.Components.Endpoints (4)
Assets\ImportMapDefinition.cs (1)
146importMap._scopes[key] = new Dictionary<string, string>(value);
Rendering\EndpointHtmlRenderer.PrerenderingState.cs (1)
271Saved = new Dictionary<string, byte[]>(state);
src\aspnetcore\src\Shared\Components\PrerenderComponentApplicationStore.cs (1)
53var dictionary = state as Dictionary<string, byte[]> ?? new Dictionary<string, byte[]>(state);
src\aspnetcore\src\Shared\Components\ProtectedPrerenderComponentApplicationStore.cs (1)
27ExistingState = new Dictionary<string, byte[]>(deserializedState);
Microsoft.AspNetCore.Components.Server (2)
src\aspnetcore\src\Shared\Components\PrerenderComponentApplicationStore.cs (1)
53var dictionary = state as Dictionary<string, byte[]> ?? new Dictionary<string, byte[]>(state);
src\aspnetcore\src\Shared\Components\ProtectedPrerenderComponentApplicationStore.cs (1)
27ExistingState = new Dictionary<string, byte[]>(deserializedState);
Microsoft.AspNetCore.Components.WebAssembly (1)
src\aspnetcore\src\Shared\Components\PrerenderComponentApplicationStore.cs (1)
53var dictionary = state as Dictionary<string, byte[]> ?? new Dictionary<string, byte[]>(state);
Microsoft.AspNetCore.Diagnostics.HealthChecks (2)
HealthCheckOptions.cs (2)
25private IDictionary<HealthStatus, int> _resultStatusCodes = new Dictionary<HealthStatus, int>(DefaultStatusCodesMapping); 47set => _resultStatusCodes = value != null ? ValidateStatusCodesMapping(value) : new Dictionary<HealthStatus, int>(DefaultStatusCodesMapping);
Microsoft.AspNetCore.Diagnostics.Middleware.Tests (1)
Logging\AcceptanceTests.Routing.cs (1)
79validateRequestState(new Dictionary<string, string?>(state));
Microsoft.DotNet.HotReload.Utils.Generator (1)
BaselineProject.cs (1)
31var props = new Dictionary<string,string> (config.Properties);