10 writes to ExcludeReferenceEndpoint
Aspire.Hosting (1)
ApplicationModel\EndpointUpdateContext.cs (1)
99set => _endpointAnnotation.ExcludeReferenceEndpoint = value;
Aspire.Hosting.Azure.CosmosDB (1)
AzureCosmosDBExtensions.cs (1)
156.WithEndpoint(EmulatorHealthEndpointName, e => e.ExcludeReferenceEndpoint = true)
Aspire.Hosting.Azure.EventHubs (1)
AzureEventHubsExtensions.cs (1)
272.WithEndpoint(EmulatorHealthEndpointName, e => e.ExcludeReferenceEndpoint = true)
Aspire.Hosting.Azure.ServiceBus (1)
AzureServiceBusExtensions.cs (1)
421.WithEndpoint(EmulatorHealthEndpointName, e => e.ExcludeReferenceEndpoint = true)
Aspire.Hosting.Keycloak (1)
KeycloakResourceBuilderExtensions.cs (1)
76.WithEndpoint(ManagementEndpointName, e => e.ExcludeReferenceEndpoint = true)
Aspire.Hosting.Tests (5)
WithReferenceTests.cs (5)
824e.ExcludeReferenceEndpoint = true; 853e.ExcludeReferenceEndpoint = true; 882e.ExcludeReferenceEndpoint = true; 919.WithEndpoint("api", e => e.ExcludeReferenceEndpoint = true); 933.WithEndpoint("management", e => e.ExcludeReferenceEndpoint = true);
10 references to ExcludeReferenceEndpoint
Aspire.Hosting (7)
ApplicationModel\EndpointReference.cs (2)
104/// Once the annotation exists, this property delegates to <see cref="EndpointAnnotation.ExcludeReferenceEndpoint"/>. 106public bool ExcludeReferenceEndpoint => Exists && EndpointAnnotation.ExcludeReferenceEndpoint;
ApplicationModel\EndpointUpdateContext.cs (1)
98get => _endpointAnnotation.ExcludeReferenceEndpoint;
ResourceBuilderExtensions.cs (4)
1184/// Each non-excluded endpoint (where <see cref="EndpointAnnotation.ExcludeReferenceEndpoint"/> is <c>false</c>) defined on the source resource will be injected using the format defined by 1195/// Resource authors can opt out individual endpoints by setting <see cref="EndpointAnnotation.ExcludeReferenceEndpoint"/> to <c>true</c> 1215/// Each non-excluded endpoint (where <see cref="EndpointAnnotation.ExcludeReferenceEndpoint"/> is <c>false</c>) defined on the source resource will be injected using the format defined by 1227/// Resource authors can opt out individual endpoints by setting <see cref="EndpointAnnotation.ExcludeReferenceEndpoint"/> to <c>true</c>
Aspire.Hosting.Azure.Tests (1)
AzureCosmosDBExtensionsTests.cs (1)
1057Assert.True(healthEndpoint.ExcludeReferenceEndpoint);
Aspire.Hosting.Tests (2)
WithReferenceTests.cs (2)
909Assert.False(endpoint.ExcludeReferenceEndpoint); 922Assert.True(endpoint.ExcludeReferenceEndpoint);