178 references to WithEndpoint
Aspire.Hosting (6)
ProjectResourceBuilderExtensions.cs (5)
520builder.WithEndpoint(schemeAsEndpointName ?? endpoint.EndpointName, e => 589builder.WithEndpoint(endpointName, e => 677builder.WithEndpoint(scheme, e => 849cb.WithEndpoint("http", e => e.TargetPort ??= 8080, createIfNotExists: false); 850cb.WithEndpoint("https", e => e.TargetPort ??= 8080, createIfNotExists: false);
ResourceBuilderExtensions.cs (1)
756/// The <see cref="WithEndpoint{T}(IResourceBuilder{T}, string, Action{EndpointAnnotation}, bool)"/> method allows
Aspire.Hosting.Azure.AppConfiguration (1)
AzureAppConfigurationExtensions.cs (1)
137return builder.WithEndpoint("emulator", endpoint =>
Aspire.Hosting.Azure.CosmosDB (2)
AzureCosmosDBExtensions.cs (2)
192return builder.WithEndpoint("emulator", endpoint => 350builder.WithEndpoint(endpointName: KnownUrls.DataExplorer.EndpointName, endpoint =>
Aspire.Hosting.Azure.EventHubs (1)
AzureEventHubsExtensions.cs (1)
378return builder.WithEndpoint("emulator", endpoint =>
Aspire.Hosting.Azure.Kusto (1)
AzureKustoBuilderExtensions.cs (1)
216return builder.WithEndpoint("http", endpoint =>
Aspire.Hosting.Azure.Kusto.Tests (1)
AddAzureKustoTests.cs (1)
63containerBuilder.WithEndpoint("http", endpoint => endpoint.Port = port);
Aspire.Hosting.Azure.ServiceBus (1)
AzureServiceBusExtensions.cs (1)
522return builder.WithEndpoint("emulator", endpoint =>
Aspire.Hosting.Azure.Storage (3)
AzureStorageExtensions.cs (3)
269return builder.WithEndpoint("blob", endpoint => 285return builder.WithEndpoint("queue", endpoint => 301return builder.WithEndpoint("table", endpoint =>
Aspire.Hosting.Azure.Tests (38)
AzureContainerAppsTests.cs (2)
919.WithEndpoint("http", e => e.Transport = "http2") 1151.WithEndpoint("ep1", e => e.IsExternal = true);
AzureCosmosDBExtensionsTests.cs (1)
270e.WithEndpoint("emulator", e => e.AllocatedEndpoint = new(e, "localhost", 10001));
AzureFunctionsTests.cs (2)
69.WithEndpoint("http", e => 248.WithEndpoint("https", e =>
AzureKeyVaultTests.cs (2)
420keyVault.WithEndpoint("https", endpoint => endpoint.AllocatedEndpoint = new(endpoint, "localhost", 8443)); 480keyVault.WithEndpoint("https", endpoint => endpoint.AllocatedEndpoint = new(endpoint, "localhost", 8443));
AzurePostgresExtensionsTests.cs (5)
122c.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 12455)); 165c.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 12455)) 228c.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 12455)); 312c.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5432)); 464postgres.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 1234));
AzureRedisEnterpriseExtensionsTests.cs (3)
59c.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 12455)); 82c.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 12455)) 152c.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 6379));
AzureRedisExtensionsTests.cs (4)
100c.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 12455)); 123c.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 12455)) 193c.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 6379)); 239.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 12455))
AzureSignalREmulatorFunctionalTest.cs (1)
25e.WithEndpoint("emulator", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 10001));
AzureSqlExtensionsTests.cs (2)
82c.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 12455)); 134c.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 12455))
AzureStorageExtensionsTests.cs (15)
180e.WithEndpoint("blob", e => e.AllocatedEndpoint = new(e, "localhost", 10000)); 181e.WithEndpoint("queue", e => e.AllocatedEndpoint = new(e, "localhost", 10001)); 182e.WithEndpoint("table", e => e.AllocatedEndpoint = new(e, "localhost", 10002)); 228e.WithEndpoint("blob", e => e.AllocatedEndpoint = new(e, "localhost", 10000)); 229e.WithEndpoint("queue", e => e.AllocatedEndpoint = new(e, "localhost", 10001)); 230e.WithEndpoint("table", e => e.AllocatedEndpoint = new(e, "localhost", 10002)); 286e.WithEndpoint("blob", e => e.AllocatedEndpoint = new(e, "localhost", 10000)); 287e.WithEndpoint("queue", e => e.AllocatedEndpoint = new(e, "localhost", 10001)); 288e.WithEndpoint("table", e => e.AllocatedEndpoint = new(e, "localhost", 10002)); 334e.WithEndpoint("blob", e => e.AllocatedEndpoint = new(e, "localhost", 10000)); 335e.WithEndpoint("queue", e => e.AllocatedEndpoint = new(e, "localhost", 10001)); 336e.WithEndpoint("table", e => e.AllocatedEndpoint = new(e, "localhost", 10002)); 406e.WithEndpoint("blob", e => e.AllocatedEndpoint = new(e, "localhost", 10000)); 407e.WithEndpoint("queue", e => e.AllocatedEndpoint = new(e, "localhost", 10001)); 408e.WithEndpoint("table", e => e.AllocatedEndpoint = new(e, "localhost", 10002));
BicepUtilitiesTests.cs (1)
36.WithEndpoint("http", e =>
Aspire.Hosting.Containers.Tests (2)
ContainerResourceTests.cs (2)
99.WithEndpoint("ep", e => 112.WithEndpoint("ep", e =>
Aspire.Hosting.Docker (1)
DockerComposeAspireDashboardResourceBuilderExtensions.cs (1)
55return builder.WithEndpoint("http", e =>
Aspire.Hosting.Garnet.Tests (2)
AddGarnetTests.cs (2)
75.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000)); 339.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001));
Aspire.Hosting.Kafka (1)
KafkaBuilderExtensions.cs (1)
159return builder.WithEndpoint("http", endpoint =>
Aspire.Hosting.Kafka.Tests (5)
AddKafkaTests.cs (5)
61.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 27017)); 118.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 27017)) 136.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 27017)) 187.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 27017)); 208.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 27017))
Aspire.Hosting.Keycloak (1)
KeycloakResourceBuilderExtensions.cs (1)
132.WithEndpoint(ManagementEndpointName, ep => ep.UriScheme = "https");
Aspire.Hosting.Milvus (1)
MilvusBuilderExtensions.cs (1)
57.WithEndpoint(MilvusServerResource.PrimaryEndpointName, endpoint =>
Aspire.Hosting.Milvus.Tests (2)
AddMilvusTests.cs (2)
83.WithEndpoint("grpc", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", MilvusPortGrpc)); 99.WithEndpoint("grpc", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", MilvusPortGrpc));
Aspire.Hosting.MongoDB (1)
MongoDBBuilderExtensions.cs (1)
178return builder.WithEndpoint("http", endpoint =>
Aspire.Hosting.MongoDB.Tests (3)
AddMongoDBTests.cs (3)
77.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 27017)) 147.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 3000)) 296.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 27017))
Aspire.Hosting.MySql (1)
MySqlBuilderExtensions.cs (1)
306return builder.WithEndpoint("http", endpoint =>
Aspire.Hosting.MySql.Tests (7)
AddMySqlTests.cs (7)
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)); 268mysql1.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001)); 269mysql2.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5002, "host3")); 360.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000)); 376.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 3306))
Aspire.Hosting.Nats.Tests (2)
AddNatsTests.cs (2)
39.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 4222)); 69.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 4222));
Aspire.Hosting.Oracle.Tests (2)
AddOracleTests.cs (2)
115.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000)); 134.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000))
Aspire.Hosting.PostgreSQL (3)
PostgresBuilderExtensions.cs (3)
240return builder.WithEndpoint("http", endpoint => 256return builder.WithEndpoint("http", endpoint => 496return builder.WithEndpoint(PostgresServerResource.PrimaryEndpointName, endpoint =>
Aspire.Hosting.PostgreSQL.Tests (9)
AddPostgresTests.cs (9)
155.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000)); 171.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000)) 464pg1.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001)); 465pg2.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5002, "host2")); 525pg1.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001)); 526pg2.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5002, "host2")); 666.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000)); 680.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000)); 694.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5432));
Aspire.Hosting.Python (1)
PythonAppResourceBuilderExtensions.cs (1)
340.WithEndpoint("http", ep => ep.UriScheme = "https");
Aspire.Hosting.Qdrant (1)
QdrantBuilderExtensions.cs (1)
73.WithEndpoint(QdrantServerResource.PrimaryEndpointName, endpoint =>
Aspire.Hosting.Qdrant.Tests (3)
AddQdrantTests.cs (3)
156.WithEndpoint("grpc", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 6334)); 172.WithEndpoint("grpc", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 6334)) 173.WithEndpoint("http", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 6333));
Aspire.Hosting.RabbitMQ.Tests (1)
AddRabbitMQTests.cs (1)
98.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 27011));
Aspire.Hosting.Redis (4)
RedisBuilderExtensions.cs (4)
406resourceBuilder.WithEndpoint("http", ep => ep.UriScheme = "https"); 428return builder.WithEndpoint("http", endpoint => 444return builder.WithEndpoint("http", endpoint => 592return builder.WithEndpoint(RedisResource.PrimaryEndpointName, endpoint =>
Aspire.Hosting.Redis.Tests (10)
AddRedisTests.cs (10)
122.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000)); 304redis1.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001)); 305redis2.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5002)); 458.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001)); 497redis.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001)); 523redis.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001)); 543redis1.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001)); 544redis2.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5002, "host2")); 696.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001)); 716.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 6379))
Aspire.Hosting.Seq.Tests (2)
AddSeqTests.cs (2)
74.WithEndpoint("http", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000)); 234.WithEndpoint("http", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000));
Aspire.Hosting.SqlServer (1)
SqlServerBuilderExtensions.cs (1)
237return builder.WithEndpoint(SqlServerServerResource.PrimaryEndpointName, endpoint =>
Aspire.Hosting.SqlServer.Tests (3)
AddSqlServerTests.cs (3)
86.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 1433)); 107.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 1433)) 273.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 1433));
Aspire.Hosting.Tests (49)
Dcp\DcpExecutorTests.cs (1)
1261.WithEndpoint("customendpoint", (endpoint) =>
DistributedApplicationTests.cs (8)
1347testProgram.ServiceABuilder.WithReplicas(2).WithEndpoint("http", endpoint => 1365testProgram.ServiceABuilder.WithEndpoint("http", endpoint => 1387.WithEndpoint("http", e => 1423.WithEndpoint("http", e => 1429.WithEndpoint("https", e => 1493var redis = builder.AddRedis($"{testName}-redis", 1234).WithEndpoint("tcp", endpoint => 1499var redisNoPort = builder.AddRedis($"{testName}-redisNoPort").WithEndpoint("tcp", endpoint => 1641var redis = AddRedisContainer(builder, $"{testName}-redis").WithEndpoint("tcp", endpoint =>
ExecutableResourceTests.cs (2)
21.WithEndpoint("ep", e => 28.WithEndpoint("ep", e =>
ExpressionResolverTests.cs (4)
88.WithEndpoint("endpoint1", e => 101.WithEndpoint("endpoint2", e => 113.WithEndpoint("endpoint3", e => 223.WithEndpoint("http", e =>
ProjectResourceTests.cs (10)
355.WithEndpoint("http", e => 359.WithEndpoint("https", e => 363.WithEndpoint("http2", e => 367.WithEndpoint("dontinjectme", e => 414.WithEndpoint("http", e => 444builder.WithEndpoint(q, e => 591.WithEndpoint("ep", e => 598.WithEndpoint("ep", e => 631.WithEndpoint("http", e => 637.WithEndpoint("https", e =>
PublishAsDockerfileTests.cs (1)
314.WithEndpoint("http", e =>
WithEndpointTests.cs (8)
23.WithEndpoint("mybinding", endpoint => 39.WithEndpoint("mybinding", endpoint => 74.WithEndpoint("mybinding", endpoint => 111.WithEndpoint("mybinding", endpoint => 129.WithEndpoint("mybinding", endpoint => 145var projectA = builder.AddProject<ProjectA>("projecta").WithEndpoint("mybinding", endpoint => 609.WithEndpoint("https", e => e.TargetHost = "example.localhost", createIfNotExists: false) 643.WithEndpoint("https", e => e.TargetHost = host, createIfNotExists: false)
WithEnvironmentTests.cs (5)
46.WithEndpoint("mybinding", e => 227.WithEndpoint("primary", ep => 276.WithEndpoint("primary", ep => 302.WithEndpoint("primary", ep => 444.WithEndpoint("primary", ep =>
WithReferenceTests.cs (10)
22.WithEndpoint("mybinding", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000)); 53.WithEndpoint("mybinding", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000)); 99.WithEndpoint("mybinding", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000)) 103.WithEndpoint("myconflictingbinding", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 3000)); 127.WithEndpoint("mybinding", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000)) 131.WithEndpoint("mynonconflictingbinding", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 3000)); 155.WithEndpoint("mybinding", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000)) 157.WithEndpoint("mybinding2", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 3000)); 185.WithEndpoint("mybinding", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000)) 187.WithEndpoint("mybinding2", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 3000));
Aspire.Hosting.Valkey.Tests (2)
AddValkeyTests.cs (2)
75.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 2000)); 329.WithEndpoint("tcp", e => e.AllocatedEndpoint = new AllocatedEndpoint(e, "localhost", 5001));
Aspire.Hosting.Yarp (2)
YarpResourceExtensions.cs (2)
133return builder.WithEndpoint("http", endpoint => 150return builder.WithEndpoint("https", endpoint =>
ProxylessEndToEnd.AppHost (2)
Program.cs (2)
6var redis = builder.AddRedis("redis", 9999).WithEndpoint("tcp", (endpoint) => 12.WithEndpoint("http", e =>