Browse Source

Update the summary.

pull/13245/head
maliming 4 years ago
parent
commit
d1f8a63447
No known key found for this signature in database GPG Key ID: 96224957E51C89E
  1. 2
      docs/en/Multi-Tenancy.md
  2. 3
      framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/AspNetCore/MultiTenancy/AbpAspNetCoreMultiTenancyOptions.cs

2
docs/en/Multi-Tenancy.md

@ -45,7 +45,7 @@ Configure<AbpMultiTenancyOptions>(options =>
{
// Handle the exception.
//return true to stop the pipeline false to continue.
// Return true to stop the pipeline, false to continue.
return true;
};
});

3
framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/AspNetCore/MultiTenancy/AbpAspNetCoreMultiTenancyOptions.cs

@ -16,6 +16,9 @@ public class AbpAspNetCoreMultiTenancyOptions
/// </summary>
public string TenantKey { get; set; }
/// <summary>
/// Return true to stop the pipeline, false to continue.
/// </summary>
public Func<HttpContext, Exception, Task<bool>> MultiTenancyMiddlewareErrorPageBuilder { get; set; }
public AbpAspNetCoreMultiTenancyOptions()

Loading…
Cancel
Save