ServiceStack.NetCoreAppHostExtensions.Use C# (CSharp) Метод

Use() публичный статический Метод

public static Use ( this app, System httpHandler ) : IApplicationBuilder
app this
httpHandler System
Результат IApplicationBuilder
        public static IApplicationBuilder Use(this IApplicationBuilder app, System.Web.IHttpAsyncHandler httpHandler)
        {
            return app.Use(httpHandler.Middleware);
        }
NetCoreAppHostExtensions