GetTokenKeys() public method

public GetTokenKeys ( ) : List
return List
Ejemplo n.º 1
0
 public List<string> GetTokenKeys(string xml)
 {
     List<string> keys = new List<string>();
     TokenManager t = new TokenManager();
     t.Load(xml);
     keys = t.GetTokenKeys();
     return keys;
 }