Thus, I looked like a zombie in the morning all night, trying to figure out how the OS processes an NFC disc to burn NDEFLaunchApp, and I knew the following.
I am sure that there is a temporary solution that allows you to run the application for the system application / third-party application (if you know the product identifier / GUID) from your application . Since there are applications in the Windows Phone Store that I somehow found out what I was trying.
I came up with the following code:
NdefLaunchAppRecord appLaunchRecord = new NdefLaunchAppRecord();
appLaunchRecord.AddPlatformAppId("WindowsPhone", "{App GUID}");
appLaunchRecord.Arguments = "_default";
var message = new NdefMessage { appLaunchRecord };
foreach (NdefLaunchAppRecord record in message)
{
var specializedType = record.CheckSpecializedType(false);
if (specializedType == typeof(NdefLaunchAppRecord))
{
var x = String.Join(" ", record.Payload);
string result = System.Text.Encoding.UTF8.GetString(record.Payload, 0, record.Payload.Length);
await Windows.System.Launcher.LaunchUriAsync(new Uri("OUR MAGIC RESULT?", UriKind.RelativeOrAbsolute));
- , REAL Service WP, Microsoft, /, . ( , , , , , + );
APPS, :
http://www.windowsphone.com/en-gb/store/app/music-hub-tile/3faa2f9e-6b8d-440a-bb60-5dd76a5baec1
- Bing Vision
http://www.windowsphone.com/en-gb/store/app/tile-for-bing-vision/05894022-e18c-40a4-a6cc-992383aa7ee8
user1705923