2 implementations of Properties
Microsoft.AspNetCore (1)
WebApplicationBuilder.cs (1)
366IDictionary<object, object> IHostApplicationBuilder.Properties => ((IHostApplicationBuilder)_hostApplicationBuilder).Properties;
Microsoft.Extensions.Hosting (1)
HostApplicationBuilder.cs (1)
188IDictionary<object, object> IHostApplicationBuilder.Properties => _hostBuilderContext.Properties;
51 references to Properties
Aspire.Azure.AI.OpenAI (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.Azure.Data.Tables (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.Azure.Messaging.EventHubs (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.Azure.Messaging.ServiceBus (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.Azure.Messaging.WebPubSub (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.Azure.Search.Documents (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.Azure.Security.KeyVault (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.Azure.Storage.Blobs (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.Azure.Storage.Queues (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.Confluent.Kafka (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.Elastic.Clients.Elasticsearch (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.Microsoft.Data.SqlClient (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.Microsoft.EntityFrameworkCore.SqlServer (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.Milvus.Client (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.MongoDB.Driver (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.MySqlConnector (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.NATS.Net (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.Npgsql (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.Npgsql.EntityFrameworkCore.PostgreSQL (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.Oracle.EntityFrameworkCore (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.Pomelo.EntityFrameworkCore.MySql (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.RabbitMQ.Client (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.Seq (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Aspire.StackExchange.Redis (2)
src\Components\Common\HealthChecksExtensions.cs (2)
26if (!builder.Properties.ContainsKey(healthCheckKey)) 28builder.Properties[healthCheckKey] = true;
Microsoft.AspNetCore (1)
WebApplicationBuilder.cs (1)
366IDictionary<object, object> IHostApplicationBuilder.Properties => ((IHostApplicationBuilder)_hostApplicationBuilder).Properties;
Microsoft.AspNetCore.Tests (2)
WebApplicationTests.cs (2)
2520Assert.Equal(1, iHostApplicationBuilder.Properties["MyProp"]); 2522Assert.Same(builder.Host.Properties, iHostApplicationBuilder.Properties);