void AppAuthState.disconnect(AppAuthContext context)
 {
     throw new NotSupportedException();
 }
 void AppAuthState.error(AppAuthContext context)
 {
     throw new NotSupportedException();
 }
        void AppAuthState.authorize(AppAuthContext context)
        {
            Login loginForm = context.getLoginForm();

            loginForm.setStateMessage("로그인 되었습니다.");
        }
 void AppAuthState.authenticateActivatingNew(AppAuthContext context)
 {
     throw new NotSupportedException();
 }
 void AppAuthState.unauthorize(AppAuthContext context, string message)
 {
     throw new NotSupportedException();
 }
 void AppAuthState.authorize(AppAuthContext context)
 {
     throw new NotSupportedException();
 }
        void AppAuthState.authenticate(AppAuthContext context)
        {
            Login loginForm = context.getLoginForm();

            loginForm.setStateMessage("로그인 시도하고 있습니다.");
        }