From a0788d6f5e690e5f446f829c81ebb720f0cc688d Mon Sep 17 00:00:00 2001 From: Christian Steinert Date: Wed, 1 May 2024 11:17:51 +0200 Subject: [PATCH] Adds XML docs to the `RouteInfo` type. --- Fable.Remoting.Server/Types.fs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Fable.Remoting.Server/Types.fs b/Fable.Remoting.Server/Types.fs index 1d382dc..877b99a 100644 --- a/Fable.Remoting.Server/Types.fs +++ b/Fable.Remoting.Server/Types.fs @@ -19,9 +19,13 @@ type ParsingArgumentsError = { ParsingArgumentsError: string } /// Route information that is propagated to error handler when exceptions are thrown type RouteInfo<'ctx> = { + /// The full path of the request path: string + /// The last part of the path of the request methodName: string + /// The HttpContext of the request httpContext: 'ctx + /// The text content of the request, if any requestBodyText: string option }