일단 폰 정보를 얻기 위해서
WMAppManifest.xml에 이걸 추가하고
<Capability Name="ID_CAP_IDENTITY_USER" />
<Capability Name="ID_CAP_IDENTITY_DEVICE" />
private string GetPhoneANID(){object anid = UserExtendedProperties.GetValue("ANID");if (anid == null){byte[] deviceId = (byte[])DeviceExtendedProperties.GetValue("DeviceUniqueId");string id = BitConverter.ToString(deviceId).Replace("-", "");anid = id;}else
{anid = anid.ToString();}return anid as string;}
이렇게 해서 얻어오면 된다.
'Windows Phone 7' 카테고리의 다른 글
[wp7] Customizing WP7 Push Notification Tiles (0) | 2011.05.03 |
---|---|
[wp7] 모바일 앱에 광고 탑재하는법 (2) | 2011.04.26 |
[wp7] 자기가 사용하는 기계 Model명을 얻고 싶을때 (0) | 2011.04.22 |
[wp7] MVVM에서의 Invalid cross-thread access.메세지 (0) | 2011.03.31 |
[wp7] Command를 Behind에서 사용하자 (0) | 2011.03.31 |