windows 아이폰에서 핸드폰의 유일한 식별자 가져오기

다음으로 이동: WP7에서 기기의 유일한 표식을 얻는 방법
        /// <summary>
        ///   windows phone        
        /// </summary>
        /// <returns></returns>
        public static string GetDeviceUniqueID()
        {
            object DeviceUniqueID;
            byte[] DeviceIDbyte = null;
            if (Microsoft.Phone.Info.DeviceExtendedProperties.TryGetValue("DeviceUniqueId", out DeviceUniqueID))
                DeviceIDbyte = (byte[])DeviceUniqueID;
            string DeviceID = Convert.ToBase64String(DeviceIDbyte);
            return DeviceID;
        }

좋은 웹페이지 즐겨찾기