Can anyone shed some light on the below?
What are the exact rules for tileId. Length limit, character limits?
Obviously looked here, but nothing: http://msdn.microsoft.com/library/windows/apps/BR242183
Found this post, but nothing about length limitations: http://social.msdn.microsoft.com/Forums/en-US/winappswithcsharp/thread/b3cb317c-edca-46c1-8dfa-7979f12c96b6/ Also his assertions about character limitations don't hold true for me - I can use characters he says are banned.
Thanks,
Jon
When i == 65:
[System.ArgumentException] = {"The parameter is incorrect.\r\n"}
string concat = "";
for (int i = 0; i < 70; i++)
{
try
{
var boo = SecondaryTile.Exists(concat);
Debug.WriteLine("{0} {1}", boo, i);
concat = concat + ".";
}
catch (Exception ex)
{
continue;
}
}
return;
Output:
False 0
False 1
... Truncated for brevity
False 63
False 64