in src/Microsoft.ServiceFabric.AspNetCore/ServiceFabricSetupFilter.cs [22:38]
public Action<IApplicationBuilder> Configure(Action<IApplicationBuilder> next)
{
return app =>
{
if (!string.IsNullOrEmpty(this.urlSuffix))
{
app.UseServiceFabricMiddleware(this.urlSuffix);
}
if (this.options.HasFlag(ServiceFabricIntegrationOptions.UseReverseProxyIntegration))
{
app.UseServiceFabricReverseProxyIntegrationMiddleware();
}
next(app);
};
}