Alias() public method

Aliases an anonymous user into an identified user.
public Alias ( string from, string to ) : void
from string The anonymous user's id before they are logged in.
to string the identified user's id after they're logged in.
return void
Example #1
0
 public static void Alias(Client client)
 {
     client.Alias("anonymous", userId);
 }