From 1a58068cb2f267a62312a2f85c531d0ea9bed3ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B1=89=E5=B9=BF?= Date: Mon, 11 Sep 2023 15:48:21 +0800 Subject: [PATCH] docs[asp-inject]add document of ctor --- .../Test.Aspect-Injector.Failed/MutexHandlerAttribute.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Test.Aspect-Injector.Failed/Test.Aspect-Injector.Failed/MutexHandlerAttribute.cs b/Test.Aspect-Injector.Failed/Test.Aspect-Injector.Failed/MutexHandlerAttribute.cs index 4b008cf..511e4aa 100644 --- a/Test.Aspect-Injector.Failed/Test.Aspect-Injector.Failed/MutexHandlerAttribute.cs +++ b/Test.Aspect-Injector.Failed/Test.Aspect-Injector.Failed/MutexHandlerAttribute.cs @@ -33,6 +33,9 @@ public class MutexHandlerAttribute : AttributeBase /// 同步方法的描述 /// public string? Description { get; set; } + /// + /// Inportant:Aspect need a argumentless ctor. + /// public MutexHandlerAttribute() : this(null, 1, null) { } public MutexHandlerAttribute(string? name = null, int max_count = 1, string? description = null) {