add docs for constructor
This commit is contained in:
parent
5f172efa9d
commit
e5cc4564cb
|
|
@ -15,6 +15,10 @@ namespace Microsoft.AspNetCore.Routing
|
|||
/// </remarks>
|
||||
public class EndpointNameMetadata : IEndpointNameMetadata
|
||||
{
|
||||
/// <summary>
|
||||
/// Creates a new <see cref="EndpointNameMetadata"/> with the provided endpoint name.
|
||||
/// </summary>
|
||||
/// <param name="endpointName">The endpoint name.</param>
|
||||
public EndpointNameMetadata(string endpointName)
|
||||
{
|
||||
if (endpointName == null)
|
||||
|
|
|
|||
Loading…
Reference in New Issue