18 references to PrimaryEndpoint
Aspire.Hosting.Azure.Redis (2)
AzureManagedRedisResource.cs (1)
102ReferenceExpression.Create($"{InnerResource.PrimaryEndpoint.Property(EndpointProperty.Host)}") :
AzureRedisCacheResource.cs (1)
79ReferenceExpression.Create($"{InnerResource.PrimaryEndpoint.Property(EndpointProperty.HostAndPort)}") :
Aspire.Hosting.Redis (10)
RedisBuilderExtensions.cs (3)
249var endpoint = redisInstance.PrimaryEndpoint; 325context.EnvironmentVariables[$"RI_REDIS_HOST{counter}"] = redisInstance.PrimaryEndpoint.Property(EndpointProperty.Host); 326context.EnvironmentVariables[$"RI_REDIS_PORT{counter}"] = redisInstance.PrimaryEndpoint.TargetPort!.Value;
RedisResource.cs (7)
54public EndpointReferenceExpression Host => PrimaryEndpoint.Property(EndpointProperty.Host); 59public EndpointReferenceExpression Port => PrimaryEndpoint.Property(EndpointProperty.Port); 71/// <see cref="PrimaryEndpoint"/>. When set to <see langword="true"/>, the connection string 77public bool TlsEnabled => PrimaryEndpoint.TlsEnabled; 87builder.Append($"{PrimaryEndpoint.Property(EndpointProperty.HostAndPort)}"); 94builder.Append($"{PrimaryEndpoint.GetTlsValue( 148builder.Append($"{PrimaryEndpoint.Property(EndpointProperty.Scheme)}");
Aspire.Hosting.Redis.Tests (6)
AddRedisTests.cs (3)
306Assert.Equal($"{redis1.Resource.PrimaryEndpoint.TargetPort!.Value}", item.Value); 328Assert.Equal($"{redis2.Resource.PrimaryEndpoint.TargetPort!.Value}", item.Value); 350Assert.Equal($"{redis3.Resource.PrimaryEndpoint.TargetPort!.Value}", item.Value);
RedisFunctionalTests.cs (3)
172Assert.Equal(redis1.Resource.PrimaryEndpoint.TargetPort, db.Port); 178Assert.Equal(redis2.Resource.PrimaryEndpoint.TargetPort, db.Port); 184Assert.Equal(redis3.Resource.PrimaryEndpoint.TargetPort, db.Port);