diff --git a/DNN Platform/Library/Services/Authentication/AuthenticationConfigBase.cs b/DNN Platform/Library/Services/Authentication/AuthenticationConfigBase.cs
index a8a0aee0509..41b30e8df10 100644
--- a/DNN Platform/Library/Services/Authentication/AuthenticationConfigBase.cs
+++ b/DNN Platform/Library/Services/Authentication/AuthenticationConfigBase.cs
@@ -1,50 +1,39 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information
-namespace DotNetNuke.Services.Authentication
-{
- using System;
- using System.ComponentModel;
+namespace DotNetNuke.Services.Authentication
+{
+ using System;
+ using System.ComponentModel;
- using DotNetNuke.Common;
+ using DotNetNuke.Common;
- /// -----------------------------------------------------------------------------
- ///
- /// The AuthenticationConfigBase class provides base configuration class for the
- /// Authentication providers.
- ///
- /// -----------------------------------------------------------------------------
- [Serializable]
- public abstract class AuthenticationConfigBase
+ /// -----------------------------------------------------------------------------
+ ///
+ /// The AuthenticationConfigBase class provides base configuration class for the
+ /// Authentication providers.
+ ///
+ /// -----------------------------------------------------------------------------
+ [Serializable]
+ public abstract class AuthenticationConfigBase
{
- ///
- /// Initializes a new instance of the class.
- ///
- public AuthenticationConfigBase()
- {
- this.DependencyProvider = Globals.DependencyProvider;
+ /// Initializes a new instance of the class.
+ public AuthenticationConfigBase()
+ {
}
- ///
- /// Initializes a new instance of the class.
- ///
- ///
- protected AuthenticationConfigBase(int portalID)
- : this()
- {
- this.PortalID = portalID;
- }
-
- [Browsable(false)]
- public int PortalID { get; set; }
-
- ///
- /// Gets the Dependency Provider to resolve registered
- /// services with the container.
- ///
- ///
- /// The Dependency Service.
- ///
- protected IServiceProvider DependencyProvider { get; }
- }
-}
+ /// Initializes a new instance of the class.
+ /// The portal ID.
+ protected AuthenticationConfigBase(int portalID)
+ : this()
+ {
+ this.PortalID = portalID;
+ }
+
+ [Browsable(false)]
+ public int PortalID { get; set; }
+
+ /// Gets the Dependency Provider to resolve registered services with the container.
+ protected IServiceProvider DependencyProvider => Globals.DependencyProvider;
+ }
+}