You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Searches the 'Authorization' header for 'Basic' scheme with base64 encoded username:password string value of which is validated using implementation of <see cref="IBasicUserValidationService"/> passed as type parameter when setting up basic authentication in the Startup.cs
Copy file name to clipboardExpand all lines: Mihir.AspNetCore.Authentication.Basic/BasicPostConfigureOptions.cs
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,14 @@
1
-
usingSystem;
1
+
// Copyright (c) Mihir Dilip. All rights reserved.
2
+
// Licensed under the MIT License. See License.txt in the project root for license information.
3
+
4
+
usingSystem;
2
5
usingMicrosoft.Extensions.Options;
3
6
4
7
namespaceMihir.AspNetCore.Authentication.Basic
5
8
{
9
+
/// <summary>
10
+
/// This post configure options checks whether the required option property <see cref="BasicOptions.Realm" /> is set or not on <see cref="BasicOptions"/>.
0 commit comments