Ejemplo n.º 1
0
 public static void CloseSession()
 {
     try
     {
         PointSDK.GetPDK().ClientLogout();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Ejemplo n.º 2
0
 private static PointUserLoginResults CreateSession(string userID, string password)
 {
     try
     {
         PointSDK pointSDK = PointSDK.GetPDK();
         PointUserLoginResults loginResult = pointSDK.ClientLogin(userID, password);
         return(loginResult);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }