Advertisement
Guest User

Windows Phone 8 GDR2 vs RTM API Changes

a guest
Aug 2nd, 2013
3,431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. MetaDiff v0.1
  2.  
  3. new file: WP8_GDR2\Emu\WinMD\Windows.winmd
  4. old file: WP8_RTM\MDILXAPCompile\WinMDs\Windows.winmd
  5.  
  6. diff legends: +: added, -: removed, *: changed, |: type member changed
  7.  
  8. + public class Windows.Phone.Networking.NetworkOperators.PhoneCallBlockedEventArgs {
  9. + public string PhoneNumber { get; }
  10. + public PhoneCallBlockedReason Reason { get; }
  11. + }
  12.  
  13. + public enum Windows.Phone.Networking.NetworkOperators.PhoneCallBlockedReason {
  14. + PrivateNumber = 0,
  15. + UnknownNumber = 1,
  16. + BlockedNumber = 2,
  17. + }
  18.  
  19. + public class Windows.Phone.Networking.NetworkOperators.PhoneCallFilter {
  20. + public PhoneCallFilterStatus Status { get; }
  21. + public static void EnableFiltering( bool enablePhoneCallFiltering );
  22. + public static void SetCallBlockingPreferences( IIterable<string> phoneNumbersToBlock, uint desiredMinimumDigitsToMatch, TelephoneNumberCategories categoriesToBlock );
  23. + }
  24.  
  25. + public enum Windows.Phone.Networking.NetworkOperators.PhoneCallFilterStatus {
  26. + Started = 0,
  27. + Stopped = 1,
  28. + }
  29.  
  30. + public class Windows.Phone.Networking.NetworkOperators.SmsFilter {
  31. + public SmsFilterStatus Status { get; }
  32. + public static void EnableFiltering( bool enableSmsFiltering );
  33. + }
  34.  
  35. + public enum Windows.Phone.Networking.NetworkOperators.SmsFilterAction {
  36. + Allow = 0,
  37. + Block = 1,
  38. + }
  39.  
  40. + public class Windows.Phone.Networking.NetworkOperators.SmsFilterMessageReceivedEventArgs {
  41. + public SmsFilterAction Action { get; set; }
  42. + public string Body { get; }
  43. + public string SenderPhoneNumber { get; }
  44. + }
  45.  
  46. + public enum Windows.Phone.Networking.NetworkOperators.SmsFilterStatus {
  47. + Started = 0,
  48. + Stopped = 1,
  49. + }
  50.  
  51. + public enum Windows.Phone.Networking.NetworkOperators.TelephoneNumberCategories {
  52. + None = 0,
  53. + Private = 1,
  54. + Unknown = 2,
  55. + }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement