|
|
|
@ -25,7 +25,7 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The target function to invoke if this route is invoked.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private Func<ListenerContext, HttpListenerResponse> Target;
|
|
|
|
|
private Func<RouteListenerContext, HttpListenerResponse> Target;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether or not to close the response after the route is invoked.
|
|
|
|
@ -42,7 +42,7 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
/// <param name="syntax"></param>
|
|
|
|
|
/// <param name="target"></param>
|
|
|
|
|
/// <param name="closeResponse"></param>
|
|
|
|
|
public Route(string method, string syntax, Func<ListenerContext, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
public Route(string method, string syntax, Func<RouteListenerContext, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
{
|
|
|
|
|
this.Method = method;
|
|
|
|
|
this.Syntax = syntax;
|
|
|
|
@ -58,7 +58,7 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
/// <param name="syntax"></param>
|
|
|
|
|
/// <param name="target"></param>
|
|
|
|
|
/// <param name="closeResponse"></param>
|
|
|
|
|
public Route(HttpRequestMethod method, string syntax, Func<ListenerContext, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
public Route(HttpRequestMethod method, string syntax, Func<RouteListenerContext, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
: this(method.ToString(), syntax, target, closeResponse) { }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -110,7 +110,7 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="context"></param>
|
|
|
|
|
/// <param name="arguments"></param>
|
|
|
|
|
public virtual void Invoke(ListenerContext context, params string[] arguments)
|
|
|
|
|
public virtual void Invoke(RouteListenerContext context, params string[] arguments)
|
|
|
|
|
{
|
|
|
|
|
this.Target.Invoke(context);
|
|
|
|
|
}
|
|
|
|
@ -118,9 +118,9 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
|
|
|
|
|
public class Route<T1> : Route
|
|
|
|
|
{
|
|
|
|
|
private Func<ListenerContext, T1, HttpListenerResponse> Target;
|
|
|
|
|
private Func<RouteListenerContext, T1, HttpListenerResponse> Target;
|
|
|
|
|
|
|
|
|
|
public Route(string method, string syntax, Func<ListenerContext, T1, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
public Route(string method, string syntax, Func<RouteListenerContext, T1, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
{
|
|
|
|
|
this.Method = method;
|
|
|
|
|
this.Syntax = syntax;
|
|
|
|
@ -128,10 +128,10 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
this.CloseResponse = closeResponse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Route(HttpRequestMethod method, string syntax, Func<ListenerContext, T1, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
public Route(HttpRequestMethod method, string syntax, Func<RouteListenerContext, T1, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
: this(method.ToString(), syntax, target, closeResponse) { }
|
|
|
|
|
|
|
|
|
|
public override void Invoke(ListenerContext context, params string[] arguments)
|
|
|
|
|
public override void Invoke(RouteListenerContext context, params string[] arguments)
|
|
|
|
|
{
|
|
|
|
|
this.Target.DynamicInvoke(context, RouteArgumentConverter.Convert<T1>(arguments[0]));
|
|
|
|
|
}
|
|
|
|
@ -139,9 +139,9 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
|
|
|
|
|
public class Route<T1, T2> : Route
|
|
|
|
|
{
|
|
|
|
|
private Func<ListenerContext, T1, T2, HttpListenerResponse> Target;
|
|
|
|
|
private Func<RouteListenerContext, T1, T2, HttpListenerResponse> Target;
|
|
|
|
|
|
|
|
|
|
public Route(string method, string syntax, Func<ListenerContext, T1, T2, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
public Route(string method, string syntax, Func<RouteListenerContext, T1, T2, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
{
|
|
|
|
|
this.Method = method;
|
|
|
|
|
this.Syntax = syntax;
|
|
|
|
@ -149,10 +149,10 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
this.CloseResponse = closeResponse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Route(HttpRequestMethod method, string syntax, Func<ListenerContext, T1, T2, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
public Route(HttpRequestMethod method, string syntax, Func<RouteListenerContext, T1, T2, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
: this(method.ToString(), syntax, target, closeResponse) { }
|
|
|
|
|
|
|
|
|
|
public override void Invoke(ListenerContext context, params string[] arguments)
|
|
|
|
|
public override void Invoke(RouteListenerContext context, params string[] arguments)
|
|
|
|
|
{
|
|
|
|
|
this.Target.DynamicInvoke(
|
|
|
|
|
context,
|
|
|
|
@ -164,9 +164,9 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
|
|
|
|
|
public class Route<T1, T2, T3> : Route
|
|
|
|
|
{
|
|
|
|
|
private Func<ListenerContext, T1, T2, T3, HttpListenerResponse> Target;
|
|
|
|
|
private Func<RouteListenerContext, T1, T2, T3, HttpListenerResponse> Target;
|
|
|
|
|
|
|
|
|
|
public Route(string method, string syntax, Func<ListenerContext, T1, T2, T3, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
public Route(string method, string syntax, Func<RouteListenerContext, T1, T2, T3, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
{
|
|
|
|
|
this.Method = method;
|
|
|
|
|
this.Syntax = syntax;
|
|
|
|
@ -174,10 +174,10 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
this.CloseResponse = closeResponse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Route(HttpRequestMethod method, string syntax, Func<ListenerContext, T1, T2, T3, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
public Route(HttpRequestMethod method, string syntax, Func<RouteListenerContext, T1, T2, T3, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
: this(method.ToString(), syntax, target, closeResponse) { }
|
|
|
|
|
|
|
|
|
|
public override void Invoke(ListenerContext context, params string[] arguments)
|
|
|
|
|
public override void Invoke(RouteListenerContext context, params string[] arguments)
|
|
|
|
|
{
|
|
|
|
|
this.Target.DynamicInvoke(
|
|
|
|
|
context,
|
|
|
|
@ -190,9 +190,9 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
|
|
|
|
|
public class Route<T1, T2, T3, T4> : Route
|
|
|
|
|
{
|
|
|
|
|
private Func<ListenerContext, T1, T2, T3, T4, HttpListenerResponse> Target;
|
|
|
|
|
private Func<RouteListenerContext, T1, T2, T3, T4, HttpListenerResponse> Target;
|
|
|
|
|
|
|
|
|
|
public Route(string method, string syntax, Func<ListenerContext, T1, T2, T3, T4, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
public Route(string method, string syntax, Func<RouteListenerContext, T1, T2, T3, T4, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
{
|
|
|
|
|
this.Method = method;
|
|
|
|
|
this.Syntax = syntax;
|
|
|
|
@ -200,10 +200,10 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
this.CloseResponse = closeResponse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Route(HttpRequestMethod method, string syntax, Func<ListenerContext, T1, T2, T3, T4, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
public Route(HttpRequestMethod method, string syntax, Func<RouteListenerContext, T1, T2, T3, T4, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
: this(method.ToString(), syntax, target, closeResponse) { }
|
|
|
|
|
|
|
|
|
|
public override void Invoke(ListenerContext context, params string[] arguments)
|
|
|
|
|
public override void Invoke(RouteListenerContext context, params string[] arguments)
|
|
|
|
|
{
|
|
|
|
|
this.Target.DynamicInvoke(
|
|
|
|
|
context,
|
|
|
|
@ -217,9 +217,9 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
|
|
|
|
|
public class Route<T1, T2, T3, T4, T5> : Route
|
|
|
|
|
{
|
|
|
|
|
private Func<ListenerContext, T1, T2, T3, T4, T5, HttpListenerResponse> Target;
|
|
|
|
|
private Func<RouteListenerContext, T1, T2, T3, T4, T5, HttpListenerResponse> Target;
|
|
|
|
|
|
|
|
|
|
public Route(string method, string syntax, Func<ListenerContext, T1, T2, T3, T4, T5, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
public Route(string method, string syntax, Func<RouteListenerContext, T1, T2, T3, T4, T5, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
{
|
|
|
|
|
this.Method = method;
|
|
|
|
|
this.Syntax = syntax;
|
|
|
|
@ -227,10 +227,10 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
this.CloseResponse = closeResponse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Route(HttpRequestMethod method, string syntax, Func<ListenerContext, T1, T2, T3, T4, T5, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
public Route(HttpRequestMethod method, string syntax, Func<RouteListenerContext, T1, T2, T3, T4, T5, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
: this(method.ToString(), syntax, target, closeResponse) { }
|
|
|
|
|
|
|
|
|
|
public override void Invoke(ListenerContext context, params string[] arguments)
|
|
|
|
|
public override void Invoke(RouteListenerContext context, params string[] arguments)
|
|
|
|
|
{
|
|
|
|
|
this.Target.DynamicInvoke(
|
|
|
|
|
context,
|
|
|
|
@ -245,9 +245,9 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
|
|
|
|
|
public class Route<T1, T2, T3, T4, T5, T6> : Route
|
|
|
|
|
{
|
|
|
|
|
private Func<ListenerContext, T1, T2, T3, T4, T5, T6, HttpListenerResponse> Target;
|
|
|
|
|
private Func<RouteListenerContext, T1, T2, T3, T4, T5, T6, HttpListenerResponse> Target;
|
|
|
|
|
|
|
|
|
|
public Route(string method, string syntax, Func<ListenerContext, T1, T2, T3, T4, T5, T6, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
public Route(string method, string syntax, Func<RouteListenerContext, T1, T2, T3, T4, T5, T6, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
{
|
|
|
|
|
this.Method = method;
|
|
|
|
|
this.Syntax = syntax;
|
|
|
|
@ -255,10 +255,10 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
this.CloseResponse = closeResponse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Route(HttpRequestMethod method, string syntax, Func<ListenerContext, T1, T2, T3, T4, T5, T6, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
public Route(HttpRequestMethod method, string syntax, Func<RouteListenerContext, T1, T2, T3, T4, T5, T6, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
: this(method.ToString(), syntax, target, closeResponse) { }
|
|
|
|
|
|
|
|
|
|
public override void Invoke(ListenerContext context, params string[] arguments)
|
|
|
|
|
public override void Invoke(RouteListenerContext context, params string[] arguments)
|
|
|
|
|
{
|
|
|
|
|
this.Target.DynamicInvoke(
|
|
|
|
|
context,
|
|
|
|
@ -274,9 +274,9 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
|
|
|
|
|
public class Route<T1, T2, T3, T4, T5, T6, T7> : Route
|
|
|
|
|
{
|
|
|
|
|
private Func<ListenerContext, T1, T2, T3, T4, T5, T6, T7, HttpListenerResponse> Target;
|
|
|
|
|
private Func<RouteListenerContext, T1, T2, T3, T4, T5, T6, T7, HttpListenerResponse> Target;
|
|
|
|
|
|
|
|
|
|
public Route(string method, string syntax, Func<ListenerContext, T1, T2, T3, T4, T5, T6, T7, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
public Route(string method, string syntax, Func<RouteListenerContext, T1, T2, T3, T4, T5, T6, T7, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
{
|
|
|
|
|
this.Method = method;
|
|
|
|
|
this.Syntax = syntax;
|
|
|
|
@ -284,10 +284,10 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
this.CloseResponse = closeResponse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Route(HttpRequestMethod method, string syntax, Func<ListenerContext, T1, T2, T3, T4, T5, T6, T7, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
public Route(HttpRequestMethod method, string syntax, Func<RouteListenerContext, T1, T2, T3, T4, T5, T6, T7, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
: this(method.ToString(), syntax, target, closeResponse) { }
|
|
|
|
|
|
|
|
|
|
public override void Invoke(ListenerContext context, params string[] arguments)
|
|
|
|
|
public override void Invoke(RouteListenerContext context, params string[] arguments)
|
|
|
|
|
{
|
|
|
|
|
this.Target.DynamicInvoke(
|
|
|
|
|
context,
|
|
|
|
@ -304,9 +304,9 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
|
|
|
|
|
public class Route<T1, T2, T3, T4, T5, T6, T7, T8> : Route
|
|
|
|
|
{
|
|
|
|
|
private Func<ListenerContext, T1, T2, T3, T4, T5, T6, T7, T8, HttpListenerResponse> Target;
|
|
|
|
|
private Func<RouteListenerContext, T1, T2, T3, T4, T5, T6, T7, T8, HttpListenerResponse> Target;
|
|
|
|
|
|
|
|
|
|
public Route(string method, string syntax, Func<ListenerContext, T1, T2, T3, T4, T5, T6, T7, T8, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
public Route(string method, string syntax, Func<RouteListenerContext, T1, T2, T3, T4, T5, T6, T7, T8, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
{
|
|
|
|
|
this.Method = method;
|
|
|
|
|
this.Syntax = syntax;
|
|
|
|
@ -314,10 +314,10 @@ namespace MontoyaTech.Rest.Net
|
|
|
|
|
this.CloseResponse = closeResponse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Route(HttpRequestMethod method, string syntax, Func<ListenerContext, T1, T2, T3, T4, T5, T6, T7, T8, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
public Route(HttpRequestMethod method, string syntax, Func<RouteListenerContext, T1, T2, T3, T4, T5, T6, T7, T8, HttpListenerResponse> target, bool closeResponse = true)
|
|
|
|
|
: this(method.ToString(), syntax, target, closeResponse) { }
|
|
|
|
|
|
|
|
|
|
public override void Invoke(ListenerContext context, params string[] arguments)
|
|
|
|
|
public override void Invoke(RouteListenerContext context, params string[] arguments)
|
|
|
|
|
{
|
|
|
|
|
this.Target.DynamicInvoke(
|
|
|
|
|
context,
|
|
|
|
|