forked from 47-studio-org/PostSharp.Samples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFilterMethodArgumentsAspect.cs
47 lines (40 loc) · 1.23 KB
/
FilterMethodArgumentsAspect.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using PostSharp.Aspects;
using PostSharp.Extensibility;
using PostSharp.Serialization;
using System.Reflection;
namespace PostSharp.Samples.Encryption
{
[PSerializable]
[LinesOfCodeAvoided(2)]
public sealed class FilterMethodArgumentsAspect : MethodInterceptionAspect
{
private FilterAttribute[] filters;
internal FilterMethodArgumentsAspect(MethodBase method)
{
filters = new FilterAttribute[method.GetParameters().Length];
}
internal void SetFilter(ParameterInfo parameter, FilterAttribute filter)
{
if (filters[parameter.Position] != null)
{
// If you want to support more than 1 filter, you will need a more complex data structure and to cope with priorities.
Message.Write(parameter, SeverityType.Error, "MY01", "There cannot be more than 1 filter on parameter {0}.",
parameter);
return;
}
filters[parameter.Position] = filter;
}
public override void OnInvoke(MethodInterceptionArgs args)
{
for (var i = 0; i < filters.Length; i++)
{
var filter = filters[i];
if (filter != null)
{
args.Arguments[i] = filter.ApplyFilter(args.Arguments[i]);
}
}
args.Proceed();
}
}
}