RemLoginCreateToken Method |
Namespace: Paperwork.Connect
public a_GenericResult CreateToken( string userName, bool timeout, DateTime lastLogin )
public void CreateToken()
{
string userName = "argus";
bool timeout = false;
DateTime lastLogin = new DateTime();
a_GenericResult ct = p.rLogin.CreateToken(userName, timeout, lastLogin);
if (ct.ErrorCode != 0)
throw new Exception(ct.Message);
}