-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathCustomRequestFilter.cs
More file actions
45 lines (35 loc) · 1.22 KB
/
Copy pathCustomRequestFilter.cs
File metadata and controls
45 lines (35 loc) · 1.22 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
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)
{
this.filter = filter ?? throw new ArgumentNullException(nameof(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)
{
this.filter = filter ?? throw new ArgumentNullException(nameof(filter));
}
public void Register(IAppHost appHost)
{
appHost.GlobalResponseFilters.Add(filter);
if (ApplyToMessaging)
appHost.GlobalMessageResponseFilters.Add(filter);
}
}
}