Hello, i have a class wich send uri to change page after login, but how can i make to send my new uri and my object "user" to the new page ??
public static class StatusUpdatePage
{
public static void Send(Uri uri)
{
Messenger.Default.Send<Uri>(uri);
}
public static void Register(object recipient, Action<Uri> action)
{
Messenger.Default.Register<Uri>(recipient, action);
}
}
thx