forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomRequestFilter.cs
More file actions
51 lines (39 loc) · 1.31 KB
/
Copy pathCustomRequestFilter.cs
File metadata and controls
51 lines (39 loc) · 1.31 KB
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
48
49
50
51
using System;
using ServiceStack.Web;
namespace ServiceStack
{
public class CustomRequestFilter : IPlugin
{
private readonly Action<IRequest, IResponse, object> filter;
public bool ApplyToMessaging { get; set; }
public CustomRequestFilter(Action<IRequest, IResponse, object> filter)
{
if (filter == null)
throw new ArgumentNullException(nameof(filter));
this.filter = filter;
}
public void Register(IAppHost appHost)
{
appHost.GlobalRequestFilters.Add(filter);
if (ApplyToMessaging)
appHost.GlobalMessageRequestFilters.Add(filter);
}
}
public class CustomResponseFilter : IPlugin
{
private readonly Action<IRequest, IResponse, object> filter;
public bool ApplyToMessaging { get; set; }
public CustomResponseFilter(Action<IRequest, IResponse, object> filter)
{
if (filter == null)
throw new ArgumentNullException(nameof(filter));
this.filter = filter;
}
public void Register(IAppHost appHost)
{
appHost.GlobalResponseFilters.Add(filter);
if (ApplyToMessaging)
appHost.GlobalMessageResponseFilters.Add(filter);
}
}
}