From d1f8a6344707e44fdc6e07d1d41ab49c8a709e8b Mon Sep 17 00:00:00 2001 From: maliming Date: Wed, 6 Jul 2022 14:51:41 +0800 Subject: [PATCH] Update the summary. --- docs/en/Multi-Tenancy.md | 2 +- .../MultiTenancy/AbpAspNetCoreMultiTenancyOptions.cs | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/en/Multi-Tenancy.md b/docs/en/Multi-Tenancy.md index c915009686..569bfeb4ca 100644 --- a/docs/en/Multi-Tenancy.md +++ b/docs/en/Multi-Tenancy.md @@ -45,7 +45,7 @@ Configure(options => { // Handle the exception. - //return true to stop the pipeline false to continue. + // Return true to stop the pipeline, false to continue. return true; }; }); diff --git a/framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/AspNetCore/MultiTenancy/AbpAspNetCoreMultiTenancyOptions.cs b/framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/AspNetCore/MultiTenancy/AbpAspNetCoreMultiTenancyOptions.cs index 5c26b524bd..aa0f62a699 100644 --- a/framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/AspNetCore/MultiTenancy/AbpAspNetCoreMultiTenancyOptions.cs +++ b/framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/AspNetCore/MultiTenancy/AbpAspNetCoreMultiTenancyOptions.cs @@ -16,6 +16,9 @@ public class AbpAspNetCoreMultiTenancyOptions /// public string TenantKey { get; set; } + /// + /// Return true to stop the pipeline, false to continue. + /// public Func> MultiTenancyMiddlewareErrorPageBuilder { get; set; } public AbpAspNetCoreMultiTenancyOptions()