private void ThrowIfNotLoggedIn()
 {
     if (!BloomBergLoginClient.IsLoggedIn())
     {
         throw new Exception("The client is not yet logged in, the AI cannot be activated");
     }
 }
예제 #2
0
 public bool Get()
 {
     return(BloomBergLoginClient.IsLoggedIn());
 }