You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Aspire.Hosting/ApplicationModel/ResourceExtensions.cs
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -673,7 +673,15 @@ public static bool TryGetUrls(this IResource resource, [NotNullWhen(true)] out I
673
673
/// </summary>
674
674
/// <param name="resource">The <see cref="IResourceWithEndpoints"/> which contains <see cref="EndpointAnnotation"/> annotations.</param>
675
675
/// <returns>An enumeration of <see cref="EndpointReference"/> based on the <see cref="EndpointAnnotation"/> annotations from the resources' <see cref="IResource.Annotations"/> collection.</returns>
Copy file name to clipboardExpand all lines: src/Aspire.Hosting/ResourceBuilderExtensions.cs
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -807,7 +807,7 @@ public static IResourceBuilder<T> WithEndpoint<T>(this IResourceBuilder<T> build
807
807
}
808
808
809
809
/// <summary>
810
-
/// Exposes an endpoint on a resource. A reference to this endpoint can be retrieved using <see cref="ResourceBuilderExtensions.GetEndpoint{T}(IResourceBuilder{T}, string, NetworkIdentifier?)"/>.
810
+
/// Exposes an endpoint on a resource. A reference to this endpoint can be retrieved using <see cref="ResourceBuilderExtensions.GetEndpoint{T}(IResourceBuilder{T}, string, NetworkIdentifier)"/>.
811
811
/// The endpoint name will be the scheme name if not specified.
@@ -863,7 +863,7 @@ public static IResourceBuilder<T> WithEndpoint<T>(this IResourceBuilder<T> build
863
863
}
864
864
865
865
/// <summary>
866
-
/// Exposes an endpoint on a resource. This endpoint reference can be retrieved using <see cref="ResourceBuilderExtensions.GetEndpoint{T}(IResourceBuilder{T}, string, NetworkIdentifier?)"/>.
866
+
/// Exposes an endpoint on a resource. This endpoint reference can be retrieved using <see cref="ResourceBuilderExtensions.GetEndpoint{T}(IResourceBuilder{T}, string, NetworkIdentifier)"/>.
867
867
/// The endpoint name will be the scheme name if not specified.
@@ -883,7 +883,7 @@ public static IResourceBuilder<T> WithEndpoint<T>(this IResourceBuilder<T> build
883
883
}
884
884
885
885
/// <summary>
886
-
/// Exposes an HTTP endpoint on a resource. This endpoint reference can be retrieved using <see cref="ResourceBuilderExtensions.GetEndpoint{T}(IResourceBuilder{T}, string, NetworkIdentifier?)"/>.
886
+
/// Exposes an HTTP endpoint on a resource. This endpoint reference can be retrieved using <see cref="ResourceBuilderExtensions.GetEndpoint{T}(IResourceBuilder{T}, string, NetworkIdentifier)"/>.
887
887
/// The endpoint name will be "http" if not specified.
@@ -903,7 +903,7 @@ public static IResourceBuilder<T> WithHttpEndpoint<T>(this IResourceBuilder<T> b
903
903
}
904
904
905
905
/// <summary>
906
-
/// Exposes an HTTPS endpoint on a resource. This endpoint reference can be retrieved using <see cref="ResourceBuilderExtensions.GetEndpoint{T}(IResourceBuilder{T}, string, NetworkIdentifier?)"/>.
906
+
/// Exposes an HTTPS endpoint on a resource. This endpoint reference can be retrieved using <see cref="ResourceBuilderExtensions.GetEndpoint{T}(IResourceBuilder{T}, string, NetworkIdentifier)"/>.
907
907
/// The endpoint name will be "https" if not specified.
@@ -957,7 +957,7 @@ public static IResourceBuilder<T> WithExternalHttpEndpoints<T>(this IResourceBui
957
957
/// <param name="name">The name of the endpoint.</param>
958
958
/// <param name="contextNetworkID">The network context in which to resolve the endpoint. If null, localhost (loopback) network context will be used.</param>
959
959
/// <returns>An <see cref="EndpointReference"/> that can be used to resolve the address of the endpoint after resource allocation has occurred.</returns>
0 commit comments