0
例外の配列を渡す必要があるAttributeを作成していますか?例外の配列を属性に渡す方法
[assembly: MyAttribute(ExceptionList = [typeof(System.Web.HttpException), typeof(System.Threading.ThreadAbortException]));
あなたは例外にオブジェクトを渡したい場合は、それは不可能です。
はあなたが例外に種類を渡したい場合は、あなたがtypeof
を使用することができます
[assembly: MyAttribute(ExceptionList = [System.Web.HttpException, System.Threading.ThreadAbortException]);