Auth0.Nancy.SelfHost.Auth0Authentication.LoadCurrentUser C# (CSharp) 메소드

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

private static LoadCurrentUser ( Nancy.NancyContext context ) : Response
context Nancy.NancyContext
리턴 Nancy.Response
        private static Response LoadCurrentUser(NancyContext context)
        {
            if (!context.ContainsCookie(_config.CookieName)) return null;

            var cookieValue = context.ValueOfCookie(_config.CookieName);
            context.CurrentUser = CurrentUserBy(cookieValue);

            return null;
        }