Beispiel #1
0
        public async void login()
        {
            bool result = await FirebaseAuthHelper.Login(User);

            if (result)
            {
                AuthenticationSucessfull?.Invoke(this, new EventArgs());
            }
        }
Beispiel #2
0
        public async Task Login()
        {
            bool result = await FirebaseAuthHelper.Login(User);

            if (result)
            {
                Authenticated?.Invoke(this, new EventArgs());
            }
        }