diff --git a/src/callkit.cs b/src/callkit.cs index 21610eca23..58642a10a7 100644 --- a/src/callkit.cs +++ b/src/callkit.cs @@ -82,7 +82,9 @@ namespace XamCore.CallKit { public enum CXCallEndedReason : nint { Failed = 1, RemoteEnded = 2, - Unanswered = 3 + Unanswered = 3, + AnsweredElsewhere = 4, + DeclinedElsewhere = 5 } [Introduced (PlatformName.iOS, 10, 0)] diff --git a/src/intents.cs b/src/intents.cs index 6225470ac2..4deee736db 100644 --- a/src/intents.cs +++ b/src/intents.cs @@ -2803,9 +2803,6 @@ namespace XamCore.Intents { [Export ("resolveDateTimeRangeForSearchForMessages:withCompletion:")] void ResolveDateTimeRange (INSearchForMessagesIntent intent, Action completion); - [Export ("resolveIdentifiersForSearchForMessages:withCompletion:")] - void ResolveIdentifiers (INSearchForMessagesIntent intent, Action completion); - [Export ("resolveGroupNamesForSearchForMessages:withCompletion:")] void ResolveGroupNames (INSearchForMessagesIntent intent, Action completion); } @@ -3254,9 +3251,6 @@ namespace XamCore.Intents { [Export ("confirmSetMessageAttribute:completion:")] void ConfirmSetMessageAttribute (INSetMessageAttributeIntent intent, Action completion); - [Export ("resolveIdentifiersForSetMessageAttribute:withCompletion:")] - void ResolveIdentifiers (INSetMessageAttributeIntent intent, Action completion); - [Export ("resolveAttributeForSetMessageAttribute:withCompletion:")] void ResolveAttribute (INSetMessageAttributeIntent intent, Action completion); } diff --git a/src/videosubscriberaccount.cs b/src/videosubscriberaccount.cs index 8b5da29b5a..1f4858d958 100644 --- a/src/videosubscriberaccount.cs +++ b/src/videosubscriberaccount.cs @@ -39,6 +39,22 @@ namespace XamCore.VideoSubscriberAccount { Granted = 3 } + [Introduced (PlatformName.iOS, 10, 0)] + [Introduced (PlatformName.TvOS, 10, 0)] + [Unavailable (PlatformName.WatchOS)] + [Static] + interface VSErrorInfoKey { + + [Field ("VSErrorInfoKeySAMLResponse")] + NSString SamlResponse { get; } + + [Field ("VSErrorInfoKeySAMLResponseStatus")] + NSString SamlResponseStatus { get; } + + [Field ("VSErrorInfoKeyUnsupportedProviderIdentifier")] + NSString UnsupportedProviderIdentifier { get; } + } + interface IVSAccountManagerDelegate { } [Protocol, Model]