Skip to content

Latest commit

 

History

History
22 lines (21 loc) · 706 Bytes

3.0.0_Microsoft.AspNetCore.Hosting.Server.Abstractions.md

File metadata and controls

22 lines (21 loc) · 706 Bytes

Microsoft.AspNetCore.Hosting.Server.Abstractions

 {
     namespace Microsoft.AspNetCore.Hosting.Server {
+        public interface IServerIntegratedAuth {
+            string AuthenticationScheme { get; }
+            bool IsEnabled { get; }
+        }
+        public class ServerIntegratedAuth : IServerIntegratedAuth {
+            public ServerIntegratedAuth();
+            public string AuthenticationScheme { get; set; }
+            public bool IsEnabled { get; set; }
+        }
     }
+    namespace Microsoft.AspNetCore.Hosting.Server.Abstractions {
+        public interface IHostContextContainer<TContext> {
+            TContext HostContext { get; set; }
+        }
+    }
 }