AdvertisingManager.广告id在WP 8.1与WP 8.0应用程序

本文关键字:WP 应用程序 广告 AdvertisingManager id | 更新日期: 2023-09-27 18:11:04

我有一个WP 8.0应用程序。

当它在WP 8.1设备上运行时,是否有办法让我检索(通过反射或其他)值:

Windows.System.UserProfile.AdvertisingManager.AdvertisingId;

或者我需要制作2个不同的应用程序,一个用于WP 8.0(用于过时的手机),另一个用于WP8.1(以获取此AdvertisingId)?

AdvertisingManager.广告id在WP 8.1与WP 8.0应用程序

var type = Type.GetType("Windows.System.UserProfile.AdvertisingManager, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime");
return type != null ? (string) type.GetProperty("AdvertisingId").GetValue(null, null) : "";