Пример #1
0
        private bool disposedValue = false; // To detect redundant calls

        protected virtual void Dispose(bool disposing)
        {
            if (!disposedValue)
            {
                if (disposing)
                {
                    // TODO: dispose managed state (managed objects).
                    awsLexClient.Dispose();
                    awsCredentials.ClearCredentials();
                }

                // TODO: set large fields to null.

                disposedValue = true;
            }
        }
Пример #2
0
 public void Logout()
 {
     if (fbauth)
     {
         FB.LogOut();
     }
     else if (gauth)
     {
         PlayGamesPlatform.Instance.SignOut();
     }
     awsCredentials.ClearCredentials();
     UserData.name     = null;
     UserData.provider = null;
     UserData.uid      = null;
     SceneManager.LoadScene("Login");
 }