aboutsummaryrefslogtreecommitdiff
path: root/lib/Plugins.Essentials/src/IEpProcessingOptions.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-03-09 01:48:28 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2023-03-09 01:48:28 -0500
commit5ddef0fcb742e77b99a0e17015d2eea0a1d4131a (patch)
treec1c88284b11b70d9f373215d8d54e8a168cc5700 /lib/Plugins.Essentials/src/IEpProcessingOptions.cs
parentdab71d5597fdfbe71f6ac310a240835716e952a5 (diff)
Omega cache, session, and account provider complete overhaul
Diffstat (limited to 'lib/Plugins.Essentials/src/IEpProcessingOptions.cs')
-rw-r--r--lib/Plugins.Essentials/src/IEpProcessingOptions.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/Plugins.Essentials/src/IEpProcessingOptions.cs b/lib/Plugins.Essentials/src/IEpProcessingOptions.cs
index de79327..13dcd37 100644
--- a/lib/Plugins.Essentials/src/IEpProcessingOptions.cs
+++ b/lib/Plugins.Essentials/src/IEpProcessingOptions.cs
@@ -1,5 +1,5 @@
/*
-* Copyright (c) 2022 Vaughn Nugent
+* Copyright (c) 2023 Vaughn Nugent
*
* Library: VNLib
* Package: VNLib.Plugins.Essentials
@@ -27,6 +27,8 @@ using System.IO;
using System.Net;
using System.Collections.Generic;
+using VNLib.Net.Http;
+
#nullable enable
namespace VNLib.Plugins.Essentials
@@ -62,5 +64,9 @@ namespace VNLib.Plugins.Essentials
/// A <see cref="TimeSpan"/> for how long a connection may remain open before all operations are cancelled
/// </summary>
TimeSpan ExecutionTimeout { get; }
+ /// <summary>
+ /// HTTP level "hard" 301 redirects
+ /// </summary>
+ IReadOnlyDictionary<string, Redirect> HardRedirects { get; }
}
} \ No newline at end of file