¿Cómo obtener tcmid del usuario actualmente registrado en Tridion?
private void Subscribe()
{
EventSystem.Subscribe<User, LoadEventArgs>(GetInfo, EventPhases.Initiated);
}
public void GetInfo(User user, LoadEventArgs args, EventPhases phase)
{
TcmUri id = user.Id;
string name = user.Title;
Console.WriteLine(id.ToString());
Console.WriteLine(name);
}
Escribí el código anterior y agrego el ensamblaje en el archivo de configuración en el servidor Tridion, pero no aparece ninguna ventana de consola al iniciar sesión de un usuario