aspnetcore/src/Microsoft.AspNetCore.Dispat.../Builder/DispatcherApplicationBuilde...

17 lines
561 B
C#

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.AspNetCore.Dispatcher;
namespace Microsoft.AspNetCore.Builder
{
public static class DispatcherApplicationBuilderExtensions
{
public static IApplicationBuilder UseDispatcher(this IApplicationBuilder builder)
{
builder.Properties.Add("Dispatcher", true);
return builder.UseMiddleware<DispatcherMiddleware>();
}
}
}