public ServiceFabricMiddleware()

in src/Microsoft.ServiceFabric.AspNetCore/ServiceFabricMiddleware.cs [32:46]


        public ServiceFabricMiddleware(RequestDelegate next, string urlSuffix)
        {
            if (next == null)
            {
                throw new ArgumentNullException("next");
            }

            if (urlSuffix == null)
            {
                throw new ArgumentNullException("urlSuffix");
            }

            this.urlSuffix = urlSuffix;
            this.next = next;
        }