public static void CloseSession() { try { PointSDK.GetPDK().ClientLogout(); } catch (Exception ex) { throw ex; } }
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; } }