You have to use the LogonTokenManager that's part of the EnterpriseSession to get the token. The code looks like this:
string myToken = mySession.LogonTokenMgr.CreateLogonTokenEx("", 120, 100);
The parameters are computer name, valid minutes, valid number of logons.
-Dell