From e5cc4564cb939d39e2926d54f1ba03e8fe8be5dd Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Mon, 10 Sep 2018 16:55:39 -0700 Subject: [PATCH] add docs for constructor --- src/Microsoft.AspNetCore.Routing/EndpointNameMetadata.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Microsoft.AspNetCore.Routing/EndpointNameMetadata.cs b/src/Microsoft.AspNetCore.Routing/EndpointNameMetadata.cs index 0b417f6722..925c355807 100644 --- a/src/Microsoft.AspNetCore.Routing/EndpointNameMetadata.cs +++ b/src/Microsoft.AspNetCore.Routing/EndpointNameMetadata.cs @@ -15,6 +15,10 @@ namespace Microsoft.AspNetCore.Routing /// public class EndpointNameMetadata : IEndpointNameMetadata { + /// + /// Creates a new with the provided endpoint name. + /// + /// The endpoint name. public EndpointNameMetadata(string endpointName) { if (endpointName == null)