97 references to WithEndpoint
Aspire.Hosting.Azure.Tests (13)
AzureBicepResourceTests.cs (6)
226e.WithEndpoint("emulator", e => e.AllocatedEndpoint = new(e, "localost", 10001));
839.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 12455))
1518postgres.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 1234));
1842e.WithEndpoint("blob", e => e.AllocatedEndpoint = new(e, "localhost", 10000));
1843e.WithEndpoint("queue", e => e.AllocatedEndpoint = new(e, "localhost", 10001));
1844e.WithEndpoint("table", e => e.AllocatedEndpoint = new(e, "localhost", 10002));
Aspire.Hosting.Containers.Tests (1)
Aspire.Hosting.Dapr.Tests (3)
Aspire.Hosting.Elasticsearch.Tests (1)
Aspire.Hosting.Garnet.Tests (1)
Aspire.Hosting.Kafka.Tests (3)
Aspire.Hosting.Milvus (1)
Aspire.Hosting.Milvus.Tests (2)
Aspire.Hosting.MongoDB.Tests (2)
Aspire.Hosting.MySql.Tests (5)
AddMySqlTests.cs (5)
118.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000));
136.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000))
241mysql.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001));
275mysql1.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001));
276mysql2.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5002, "host3"));
Aspire.Hosting.Oracle.Tests (2)
Aspire.Hosting.PostgreSQL.Tests (6)
AddPostgresTests.cs (6)
157.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000));
171.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000))
460pg1.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001));
461pg2.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5002, "host2"));
504pg1.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001));
505pg2.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5002, "host2"));
Aspire.Hosting.Qdrant (1)
Aspire.Hosting.Qdrant.Tests (3)
Aspire.Hosting.RabbitMQ.Tests (1)
Aspire.Hosting.Redis.Tests (4)
AddRedisTests.cs (4)
84.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000));
214redis.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001));
237redis1.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001));
238redis2.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5002, "host2"));
Aspire.Hosting.SqlServer.Tests (2)
Aspire.Hosting.Tests (39)
DistributedApplicationTests.cs (8)
651testProgram.ServiceABuilder.WithReplicas(2).WithEndpoint("http", endpoint =>
669testProgram.ServiceABuilder.WithEndpoint("http", endpoint =>
690.WithEndpoint("http", e =>
725.WithEndpoint("http", e =>
731.WithEndpoint("https", e =>
791var redis = builder.AddRedis("redis", 1234).WithEndpoint("tcp", endpoint =>
797var redisNoPort = builder.AddRedis("redisNoPort").WithEndpoint("tcp", endpoint =>
844var redis = builder.AddContainer("dummyRedis", "redis").WithEndpoint("tcp", endpoint =>
WithReferenceTests.cs (9)
23.WithEndpoint("mybinding", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000));
41.WithEndpoint("mybinding", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000))
45.WithEndpoint("myconflictingbinding", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 3000));
66.WithEndpoint("mybinding", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000))
70.WithEndpoint("mynonconflictingbinding", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 3000));
91.WithEndpoint("mybinding", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000))
93.WithEndpoint("mybinding2", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 3000));
113.WithEndpoint("mybinding", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000))
115.WithEndpoint("mybinding2", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 3000));
Aspire.Hosting.Valkey.Tests (1)
Dapr.AppHost (2)
ProxylessEndToEnd.AppHost (2)
TestingAppHost1.AppHost (2)