[identitylookup] Update for Xcode 11 beta 1 (#6511)

No change in beta 2 and beta 3
This commit is contained in:
Sebastien Pouliot 2019-07-08 09:24:09 -04:00 коммит произвёл GitHub
Родитель b3ca5f5569
Коммит 39409238ab
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 33 добавлений и 0 удалений

Просмотреть файл

@ -5,6 +5,7 @@
// Alex Soto <alexsoto@microsoft.com>
//
// Copyright 2017 Xamarin Inc. All rights reserved.
// Copyright 2019 Microsoft Corporation.
//
#if XAMCORE_2_0
@ -15,6 +16,8 @@ using ObjCRuntime;
namespace IdentityLookup {
[iOS (11,0)]
[Introduced (PlatformName.UIKitForMac, 13,0)]
[NoMac][NoWatch][NoTV]
[Native]
public enum ILMessageFilterAction : long {
None = 0,
@ -23,6 +26,8 @@ namespace IdentityLookup {
}
[iOS (11,0)]
[Introduced (PlatformName.UIKitForMac, 13,0)]
[NoMac][NoWatch][NoTV]
[ErrorDomain ("ILMessageFilterErrorDomain")]
[Native]
public enum ILMessageFilterError : long {
@ -34,6 +39,8 @@ namespace IdentityLookup {
}
[iOS (12, 0)]
[Introduced (PlatformName.UIKitForMac, 13,0)]
[NoMac][NoWatch][NoTV]
[Native]
enum ILClassificationAction : long {
None = 0,
@ -43,12 +50,16 @@ namespace IdentityLookup {
}
[iOS (11,0)]
[Introduced (PlatformName.UIKitForMac, 13,0)]
[NoMac][NoWatch][NoTV]
[DisableDefaultCtor]
[BaseType (typeof (NSObject))]
interface ILMessageFilterExtension {
}
[iOS (11,0)]
[Introduced (PlatformName.UIKitForMac, 13,0)]
[NoMac][NoWatch][NoTV]
[DisableDefaultCtor]
[BaseType (typeof (NSExtensionContext))]
interface ILMessageFilterExtensionContext {
@ -61,6 +72,8 @@ namespace IdentityLookup {
interface IILMessageFilterQueryHandling { }
[iOS (11,0)]
[Introduced (PlatformName.UIKitForMac, 13,0)]
[NoMac][NoWatch][NoTV]
[Protocol]
interface ILMessageFilterQueryHandling {
@ -70,6 +83,8 @@ namespace IdentityLookup {
}
[iOS (11,0)]
[Introduced (PlatformName.UIKitForMac, 13,0)]
[NoMac][NoWatch][NoTV]
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
interface ILMessageFilterQueryRequest : NSSecureCoding {
@ -82,6 +97,8 @@ namespace IdentityLookup {
}
[iOS (11,0)]
[Introduced (PlatformName.UIKitForMac, 13,0)]
[NoMac][NoWatch][NoTV]
[DisableDefaultCtor]
[BaseType (typeof (NSObject))]
interface ILMessageFilterQueryResponse : NSSecureCoding {
@ -91,6 +108,8 @@ namespace IdentityLookup {
}
[iOS (11,0)]
[Introduced (PlatformName.UIKitForMac, 13,0)]
[NoMac][NoWatch][NoTV]
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
interface ILNetworkResponse : NSSecureCoding {
@ -103,6 +122,8 @@ namespace IdentityLookup {
}
[iOS (12,0)]
[Introduced (PlatformName.UIKitForMac, 13,0)]
[NoMac][NoWatch][NoTV]
[BaseType (typeof (ILClassificationRequest))]
[DisableDefaultCtor]
interface ILCallClassificationRequest : NSSecureCoding {
@ -112,6 +133,8 @@ namespace IdentityLookup {
}
[iOS (12,0)]
[Introduced (PlatformName.UIKitForMac, 13,0)]
[NoMac][NoWatch][NoTV]
[BaseType (typeof (ILCommunication))]
[DisableDefaultCtor]
interface ILCallCommunication {
@ -122,6 +145,8 @@ namespace IdentityLookup {
[Abstract]
[iOS (12,0)]
[Introduced (PlatformName.UIKitForMac, 13,0)]
[NoMac][NoWatch][NoTV]
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
interface ILClassificationRequest : NSSecureCoding {
@ -129,6 +154,8 @@ namespace IdentityLookup {
}
[iOS (12,0)]
[Introduced (PlatformName.UIKitForMac, 13,0)]
[NoMac][NoWatch][NoTV]
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
interface ILClassificationResponse : NSSecureCoding {
@ -151,6 +178,8 @@ namespace IdentityLookup {
[Abstract]
[iOS (12,0)]
[Introduced (PlatformName.UIKitForMac, 13,0)]
[NoMac][NoWatch][NoTV]
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
interface ILCommunication : NSSecureCoding {
@ -166,6 +195,8 @@ namespace IdentityLookup {
}
[iOS (12,0)]
[Introduced (PlatformName.UIKitForMac, 13,0)]
[NoMac][NoWatch][NoTV]
[BaseType (typeof (ILClassificationRequest))]
[DisableDefaultCtor]
interface ILMessageClassificationRequest : NSSecureCoding {
@ -175,6 +206,8 @@ namespace IdentityLookup {
}
[iOS (12,0)]
[Introduced (PlatformName.UIKitForMac, 13,0)]
[NoMac][NoWatch][NoTV]
[BaseType (typeof (ILCommunication))]
[DisableDefaultCtor]
interface ILMessageCommunication {