With this:
if (args.Parameter == "ContactIntermediaryPage")
...in a NavigatedTo() event handler, Resharper tells me: "Possible unintended reference comparison; to get a value comparison, cast the left hand side to type 'string'"
So should I change it to one of the following, and, if so, which one:
if ((string)args.Parameter == "ContactIntermediaryPage")
if (args.Parameter.ToString() == "ContactIntermediaryPage")
if (args.Parameter.Equals("ContactIntermediaryPage"))