From 8467251a179ec7aa4b573d2643f661b6d28b4c99 Mon Sep 17 00:00:00 2001 From: MattMo Date: Wed, 28 Jun 2023 16:35:34 -0700 Subject: [PATCH] Working on ServeMultiPage and ServeSinglePage to help make it easier to serve a website using this library. --- Rest.Net/HttpListenerResponseExtensions.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/Rest.Net/HttpListenerResponseExtensions.cs b/Rest.Net/HttpListenerResponseExtensions.cs index 0916531..56a5bca 100644 --- a/Rest.Net/HttpListenerResponseExtensions.cs +++ b/Rest.Net/HttpListenerResponseExtensions.cs @@ -497,5 +497,25 @@ namespace MontoyaTech.Rest.Net { return response.WithStatus(HttpStatusCode.BadRequest).WithText($"{fieldName} in request is out of range."); } + + /// + /// Sets the response to serve a file in the context of a multi page application. + /// + /// + /// + /// + public static HttpListenerResponse ServeMultiPage(this HttpListenerResponse response, HttpListenerRequest request) + { + } + + /// + /// Sets the response to serve a file in the context of a single page application. + /// + /// + /// + /// + public static HttpListenerResponse ServeSinglePage(this HttpListenerResponse response, HttpListenerRequest request) + { + } } }