Browse Source
Add `CancellationToken` to `IgnoredTypes` of `AbpAuditingOptions`.
pull/15826/head
maliming
3 years ago
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4
1 changed files with
3 additions and
1 deletions
-
framework/src/Volo.Abp.Auditing/Volo/Abp/Auditing/AbpAuditingOptions.cs
|
|
|
@ -2,6 +2,7 @@ |
|
|
|
using System.Collections.Generic; |
|
|
|
using System.IO; |
|
|
|
using System.Linq.Expressions; |
|
|
|
using System.Threading; |
|
|
|
using System.Threading.Tasks; |
|
|
|
|
|
|
|
namespace Volo.Abp.Auditing; |
|
|
|
@ -76,7 +77,8 @@ public class AbpAuditingOptions |
|
|
|
IgnoredTypes = new List<Type> |
|
|
|
{ |
|
|
|
typeof(Stream), |
|
|
|
typeof(Expression) |
|
|
|
typeof(Expression), |
|
|
|
typeof(CancellationToken) |
|
|
|
}; |
|
|
|
|
|
|
|
EntityHistorySelectors = new EntityHistorySelectorList(); |
|
|
|
|