76 instantiations of AllocatedEndpoint
Aspire.Hosting (1)
Aspire.Hosting.Azure.Tests (12)
AzureBicepResourceTests.cs (6)
226e.WithEndpoint("emulator", e => e.AllocatedEndpoint = new(e, "localost", 10001));
1113.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 12455))
1720postgres.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 1234));
2060e.WithEndpoint("blob", e => e.AllocatedEndpoint = new(e, "localhost", 10000));
2061e.WithEndpoint("queue", e => e.AllocatedEndpoint = new(e, "localhost", 10001));
2062e.WithEndpoint("table", e => e.AllocatedEndpoint = new(e, "localhost", 10002));
Aspire.Hosting.Containers.Tests (1)
Aspire.Hosting.Elasticsearch.Tests (1)
Aspire.Hosting.Garnet.Tests (1)
Aspire.Hosting.Kafka.Tests (3)
Aspire.Hosting.Milvus.Tests (2)
Aspire.Hosting.MongoDB.Tests (2)
Aspire.Hosting.MySql.Tests (5)
AddMySqlTests.cs (5)
117.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000));
135.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000))
240mysql.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001));
274mysql1.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001));
275mysql2.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5002, "host3"));
Aspire.Hosting.Nats.Tests (2)
Aspire.Hosting.Oracle.Tests (2)
Aspire.Hosting.PostgreSQL.Tests (6)
AddPostgresTests.cs (6)
156.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000));
170.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000))
458pg1.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001));
459pg2.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5002, "host2"));
502pg1.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001));
503pg2.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5002, "host2"));
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 (27)
ProjectResourceTests.cs (9)
338e.AllocatedEndpoint = new(e, "localhost", e.Port!.Value, targetPortExpression: "p0");
342e.AllocatedEndpoint = new(e, "localhost", e.Port!.Value, targetPortExpression: "p1");
346e.AllocatedEndpoint = new(e, "localhost", e.Port!.Value, targetPortExpression: "p2");
350e.AllocatedEndpoint = new(e, "localhost", e.Port!.Value, targetPortExpression: "p3");
397e.AllocatedEndpoint = new(e, "localhost", e.Port!.Value, targetPortExpression: "p0");
427e.AllocatedEndpoint = new(e, "localhost", e.Port!.Value, targetPortExpression: $"p{index++}");
575e.AllocatedEndpoint = new(e, "localhost", 1234);
605e.AllocatedEndpoint = new(e, "localhost", e.Port!.Value, targetPortExpression: "p0");
611e.AllocatedEndpoint = new(e, "localhost", e.Port!.Value, targetPortExpression: "p1");
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)
7 references to AllocatedEndpoint
Aspire.Hosting (6)
TestProject.AppHost (1)