2 instantiations of HttpsCertificateConfigurationCallbackAnnotation
Aspire.Hosting (1)
ResourceBuilderExtensions.cs (1)
2640
var annotation = new
HttpsCertificateConfigurationCallbackAnnotation
(callback);
Aspire.Hosting.Tests (1)
ExecutionConfigurationGathererTests.cs (1)
520
.WithAnnotation(new
HttpsCertificateConfigurationCallbackAnnotation
(ctx =>
23 references to HttpsCertificateConfigurationCallbackAnnotation
Aspire.Hosting (5)
ApplicationModel\HttpsCertificateConfigurationCallbackAnnotaion.cs (1)
22
/// Context provided to a <see cref="
HttpsCertificateConfigurationCallbackAnnotation
"/> callback.
ApplicationModel\HttpsCertificateExecutionConfigurationGatherer.cs (3)
78
foreach (
var
callback in resource.TryGetAnnotationsOfType<
HttpsCertificateConfigurationCallbackAnnotation
>(out var callbacks) ? callbacks : Enumerable.Empty<
HttpsCertificateConfigurationCallbackAnnotation
>())
ResourceBuilderExtensions.cs (1)
2640
var
annotation = new HttpsCertificateConfigurationCallbackAnnotation(callback);
Aspire.Hosting.Azure.Tests (6)
AzureCosmosDBExtensionsTests.cs (6)
626
Assert.Contains(cosmos.Resource.Annotations, a => a is
HttpsCertificateConfigurationCallbackAnnotation
);
637
Assert.DoesNotContain(cosmos.Resource.Annotations, a => a is
HttpsCertificateConfigurationCallbackAnnotation
);
647
var
certConfigAnnotation = Assert.Single(
648
cosmos.Resource.Annotations.OfType<
HttpsCertificateConfigurationCallbackAnnotation
>());
681
var
certConfigAnnotation = Assert.Single(
682
cosmos.Resource.Annotations.OfType<
HttpsCertificateConfigurationCallbackAnnotation
>());
Aspire.Hosting.JavaScript.Tests (12)
AddViteAppTests.cs (12)
303
var
certConfigAnnotation = nodeResource.Annotations
304
.OfType<
HttpsCertificateConfigurationCallbackAnnotation
>()
363
var
certConfigAnnotation = nodeResource.Annotations
364
.OfType<
HttpsCertificateConfigurationCallbackAnnotation
>()
414
var
certConfigAnnotation = nodeResource.Annotations
415
.OfType<
HttpsCertificateConfigurationCallbackAnnotation
>()
467
var
certConfigAnnotation = nodeResource.Annotations
468
.OfType<
HttpsCertificateConfigurationCallbackAnnotation
>()
526
var
certConfigAnnotation = nodeResource.Annotations
527
.OfType<
HttpsCertificateConfigurationCallbackAnnotation
>()
601
var
certConfigAnnotation = nodeResource.Annotations
602
.OfType<
HttpsCertificateConfigurationCallbackAnnotation
>()