Adf.Core.Logging.LogManager.GetCurrentUser C# (CSharp) 메소드

GetCurrentUser() 개인적인 정적인 메소드

private static GetCurrentUser ( ) : IUser
리턴 IUser
        private static IUser GetCurrentUser()
        {
            // getting the current user when not logged in might throw an exception and cause a loop calling LogManager..
            return AuthorizationManager.IsLoggedOn ? AuthorizationManager.CurrentUser : null;
        }