20 references to PrimaryEndpoint
Aspire.Hosting.Azure.Redis (2)
AzureManagedRedisResource.cs (1)
98ReferenceExpression.Create($"{InnerResource.PrimaryEndpoint.Property(EndpointProperty.Host)}") :
AzureRedisCacheResource.cs (1)
79ReferenceExpression.Create($"{InnerResource.PrimaryEndpoint.Property(EndpointProperty.HostAndPort)}") :
Aspire.Hosting.Redis (10)
RedisBuilderExtensions.cs (3)
263var endpoint = redisInstance.PrimaryEndpoint; 341context.EnvironmentVariables[$"RI_REDIS_HOST{counter}"] = redisInstance.PrimaryEndpoint.Property(EndpointProperty.Host); 342context.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)
307Assert.Equal($"{redis1.Resource.PrimaryEndpoint.TargetPort!.Value}", item.Value); 329Assert.Equal($"{redis2.Resource.PrimaryEndpoint.TargetPort!.Value}", item.Value); 351Assert.Equal($"{redis3.Resource.PrimaryEndpoint.TargetPort!.Value}", item.Value);
RedisFunctionalTests.cs (3)
209Assert.Equal(redis1.Resource.PrimaryEndpoint.TargetPort, db.Port); 215Assert.Equal(redis2.Resource.PrimaryEndpoint.TargetPort, db.Port); 221Assert.Equal(redis3.Resource.PrimaryEndpoint.TargetPort, db.Port);
Aspire.Hosting.Tests (2)
DistributedApplicationTests.cs (2)
1868var otherRedisService = await WaitForAllocatedProxylessServiceAsync(s, redisNoPort.Resource, redisNoPort.Resource.PrimaryEndpoint) 1946var otherRedisService = await WaitForAllocatedProxylessServiceAsync(s, redisNoPort.Resource, redisNoPort.Resource.PrimaryEndpoint)