add docs for constructor

This commit is contained in:
Ryan Nowak 2018-09-10 16:55:39 -07:00
parent 5f172efa9d
commit e5cc4564cb
1 changed files with 4 additions and 0 deletions

View File

@ -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)