Ejemplo n.º 1
0
 /// <summary>
 /// Used to logout from the Vault Server.
 /// </summary>
 public void Logout()
 {
     if (ClientInstance != null)
     {
         ClientInstance.Logout();
     }
 }
Ejemplo n.º 2
0
 public void Dispose()
 {
     if (vaultClient != null)
     {
         vaultClient.Logout( );
         vaultClient = null;
     }
 }
Ejemplo n.º 3
0
 public void Logout(User user)
 {
     try
     {
         if (IsConnectionOk())
         {
             ClientInstance.Logout(user);
         }
     }
     catch (Exception ex)
     {
         HandleException();
     }
 }