CKSubscriptionOptions 枚举

定义

枚举用于控制基于查询的订阅的推送通知行为的标志。

此枚举支持其成员值的按位组合。

[ObjCRuntime.Deprecated(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.None, "Use 'CKQuerySubscriptionOptions' instead.")]
[ObjCRuntime.Deprecated(ObjCRuntime.PlatformName.MacOSX, 10, 12, ObjCRuntime.PlatformArchitecture.None, "Use 'CKQuerySubscriptionOptions' instead.")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 8, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 10, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
[System.Flags]
public enum CKSubscriptionOptions
type CKSubscriptionOptions = 
继承
CKSubscriptionOptions
属性

字段

FiresOnce 8

通知触发一次,订阅对象将被删除。

FiresOnRecordCreation 1

创建与查询匹配的记录时,将触发通知。

FiresOnRecordDeletion 4

删除与查询匹配的记录时,将触发通知。

FiresOnRecordUpdate 2

更新与查询匹配的记录时,将触发通知。

适用于