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) + { + } } }