17 instantiations of HttpsCertificateAnnotation
Aspire.Hosting (4)
ApplicationModel\HttpsCertificateExecutionConfigurationGatherer.cs (1)
32
var effectiveAnnotation = new
HttpsCertificateAnnotation
();
ResourceBuilderExtensions.cs (3)
4179
var annotation = new
HttpsCertificateAnnotation
4215
var annotation = new
HttpsCertificateAnnotation
4247
var annotation = new
HttpsCertificateAnnotation
Aspire.Hosting.Azure.Tests (4)
AzureCosmosDBExtensionsTests.cs (4)
798
cosmos.WithAnnotation(new
HttpsCertificateAnnotation
829
cosmos.WithAnnotation(new
HttpsCertificateAnnotation
859
cosmos.WithAnnotation(new
HttpsCertificateAnnotation
888
cosmos.WithAnnotation(new
HttpsCertificateAnnotation
Aspire.Hosting.Keycloak.Tests (1)
KeycloakResourceBuilderTests.cs (1)
72
keycloak.WithAnnotation(new
HttpsCertificateAnnotation
Aspire.Hosting.Tests (8)
Dcp\DcpHostNotificationTests.cs (3)
920
resource.Annotations.Add(new
HttpsCertificateAnnotation
979
resource.Annotations.Add(new
HttpsCertificateAnnotation
1038
resource.Annotations.Add(new
HttpsCertificateAnnotation
ExecutionConfigurationGathererTests.cs (5)
678
.WithAnnotation(new
HttpsCertificateAnnotation
{ Certificate = cert })
708
.WithAnnotation(new
HttpsCertificateAnnotation
739
.WithAnnotation(new
HttpsCertificateAnnotation
785
.WithAnnotation(new
HttpsCertificateAnnotation
{ Certificate = cert })
824
.WithAnnotation(new
HttpsCertificateAnnotation
{ Certificate = cert })
30 references to HttpsCertificateAnnotation
Aspire.Hosting (13)
ApplicationModel\HttpsCertificateExecutionConfigurationGatherer.cs (3)
32
var
effectiveAnnotation = new HttpsCertificateAnnotation();
33
if (resource.TryGetLastAnnotation<
HttpsCertificateAnnotation
>(out
var
annotation))
Dcp\DcpHost.cs (2)
677
if (resource.TryGetLastAnnotation<
HttpsCertificateAnnotation
>(out
var
certAnnotation)
ResourceBuilderExtensions.cs (8)
4179
var
annotation = new HttpsCertificateAnnotation
4189
/// Adds a <see cref="
HttpsCertificateAnnotation
"/> to the resource annotations to associate an X.509 certificate key pair with the resource.
4215
var
annotation = new HttpsCertificateAnnotation
4247
var
annotation = new HttpsCertificateAnnotation
4303
/// <item>No <see cref="
HttpsCertificateAnnotation
"/> is present and the <see cref="IDeveloperCertificateService"/> indicates
4305
/// <item>An <see cref="
HttpsCertificateAnnotation
"/> is present that requests a developer certificate or provides a custom certificate.</item>
4331
if (!resource.TryGetLastAnnotation<
HttpsCertificateAnnotation
>(out
var
annotation))
Aspire.Hosting.MongoDB (3)
MongoDBBuilderExtensions.cs (2)
141
(mongoServerResource.TryGetLastAnnotation<
HttpsCertificateAnnotation
>(out
var
certificateAnnotation) && certificateAnnotation.Certificate is not null)
ReplicaSet\MongoDBReplicaSetBuilderExtensions.cs (1)
478
if (!member.Resource.HasAnnotationOfType<
HttpsCertificateAnnotation
>())
Aspire.Hosting.MongoDB.Tests (4)
ReplicaSet\AddMongoDBReplicaSetTests.cs (4)
173
var
annotation = Assert.Single(mongo1.Resource.Annotations.OfType<
HttpsCertificateAnnotation
>());
185
var
annotation = Assert.Single(mongo1.Resource.Annotations.OfType<
HttpsCertificateAnnotation
>());
Aspire.Hosting.Redis.Tests (10)
AddRedisTests.cs (10)
859
var
annotation = Assert.Single(redis.Resource.Annotations.OfType<
HttpsCertificateAnnotation
>());
872
var
annotation = Assert.Single(redis.Resource.Annotations.OfType<
HttpsCertificateAnnotation
>());
886
var
annotation = Assert.Single(redis.Resource.Annotations.OfType<
HttpsCertificateAnnotation
>());
901
var
annotation = Assert.Single(redis.Resource.Annotations.OfType<
HttpsCertificateAnnotation
>());
917
var
annotation = Assert.Single(redis.Resource.Annotations.OfType<
HttpsCertificateAnnotation
>());