MessagingCenter.Subscribe<string>(this, "LocationName", (value) =>
{
FullPathName.Text = value;
});
While I set a break point and notice that This MessagingCenter.Subscribe called twice.
How to solve this?