@@ -13,7 +13,7 @@ public static class HttpContextExtensions
13
13
/// <summary>
14
14
/// Encapsulate execution of handler with the corresponding validation logic
15
15
/// </summary>
16
- /// <typeparam name="TOut"></typeparam>
16
+ /// <typeparam name="TOut">Type of the output of the handler </typeparam>
17
17
/// <param name="ctx">The http context to process</param>
18
18
/// <param name="handler">A func handler that will be validated and executed</param>
19
19
/// <returns name="Task">A Task object with the results</returns>
@@ -40,7 +40,7 @@ public static async Task ExecHandler<TOut>(this HttpContext ctx, Func<TOut> hand
40
40
/// <summary>
41
41
/// Encapsulate execution of handler with the validation logic and storage on cache using the key provided
42
42
/// </summary>
43
- /// <typeparam name="TOut"></typeparam>
43
+ /// <typeparam name="TOut">Type of the output of the handler </typeparam>
44
44
/// <param name="ctx">The http context to process</param>
45
45
/// <param name="cacheTimespan">Time alive for the store to keep</param>
46
46
/// <param name="handler">A func handler that will be executed</param>
@@ -70,8 +70,8 @@ public static async Task ExecHandler<TOut>(this HttpContext ctx, int cacheTimesp
70
70
/// <summary>
71
71
/// Encapsulate execution of handler with the validation logic while binding and validating the http request
72
72
/// </summary>
73
- /// <typeparam name="TIn"></typeparam>
74
- /// <typeparam name="TOut"></typeparam>
73
+ /// <typeparam name="TIn">Type of the input of the handler </typeparam>
74
+ /// <typeparam name="TOut">Type of the output of the handler </typeparam>
75
75
/// <param name="ctx">The http context to process</param>
76
76
/// <param name="handler">A func handler that will be validated and executed</param>
77
77
public static async Task ExecHandler < TIn , TOut > ( this HttpContext ctx , TIn @in , Func < TIn , TOut > handler )
@@ -110,8 +110,8 @@ public static async Task ExecHandler<TIn, TOut>(this HttpContext ctx, TIn @in, F
110
110
/// Encapsulate execution of handler with the validation logic while binding,
111
111
/// validating the http request and storing on cache using the key provided
112
112
/// </summary>
113
- /// <typeparam name="TIn"></typeparam>
114
- /// <typeparam name="TOut"></typeparam>
113
+ /// <typeparam name="TIn">Type of the input of the handler </typeparam>
114
+ /// <typeparam name="TOut">Type of the output of the handler </typeparam>
115
115
/// <param name="ctx">The http context to process</param>
116
116
/// <param name="cacheTimespan">Time alive for the store to keep</param>
117
117
/// <param name="handler">A func handler that will be validated and executed</param>
0 commit comments