(type: Function)
| 65 | } |
| 66 | |
| 67 | static isAsyncActionFilter(type: Function): boolean { |
| 68 | return ObjectUtility.create(type.prototype) |
| 69 | instanceof ActionFilterAsync; |
| 70 | } |
| 71 | |
| 72 | static isSyncResultFilter(type: Function): boolean { |
| 73 | return ObjectUtility.create(type.prototype) |