@@ -36,18 +36,15 @@ public class OcelotPipelineConfiguration
36
36
public Func < HttpContext , Func < Task > , Task > AuthenticationMiddleware { get ; set ; }
37
37
38
38
/// <summary>
39
- /// This is to allow the user to run any extra authentication after the Ocelot authentication
40
- /// kicks in
39
+ /// This is to allow the user to run any extra authentication after the Ocelot authentication kicks in.
41
40
/// </summary>
42
41
/// <value>
43
- /// <placeholder>This is to allow the user to run any extra authentication after the Ocelot authentication
44
- /// kicks in</placeholder>
42
+ /// A <see cref="Func{HttpContext, TFunc, Task}"/> delegate object.
45
43
/// </value>
46
44
public Func < HttpContext , Func < Task > , Task > AfterAuthenticationMiddleware { get ; set ; }
47
45
48
46
/// <summary>
49
- /// This is to allow the user to run any extra authorization before the Ocelot authentication
50
- /// kicks in
47
+ /// This is to allow the user to run any extra authorization before the Ocelot authentication kicks in.
51
48
/// </summary>
52
49
/// <value>
53
50
/// A <see cref="Func{HttpContext, TFunc, Task}"/> delegate object.
@@ -63,17 +60,15 @@ public class OcelotPipelineConfiguration
63
60
public Func < HttpContext , Func < Task > , Task > AuthorizationMiddleware { get ; set ; }
64
61
65
62
/// <summary>
66
- /// This is to allow the user to run any extra authorization after the Ocelot authentication
67
- /// kicks in
63
+ /// This is to allow the user to run any extra authorization after the Ocelot authorization kicks in.
68
64
/// </summary>
69
65
/// <value>
70
- /// <placeholder>This is to allow the user to run any extra authorization after the Ocelot authentication
71
- /// kicks in</placeholder>
66
+ /// A <see cref="Func{HttpContext, TFunc, Task}"/> delegate object.
72
67
/// </value>
73
68
public Func < HttpContext , Func < Task > , Task > AfterAuthorizationMiddleware { get ; set ; }
74
69
75
70
/// <summary>
76
- /// This allows the user to implement there own query string manipulation logic
71
+ /// This allows the user to implement there own query string manipulation logic.
77
72
/// </summary>
78
73
/// <value>
79
74
/// A <see cref="Func{HttpContext, TFunc, Task}"/> delegate object.
0 commit comments