CKContainer.DiscoverUserIdentity Method

Definition

Retrieves the CKUserIdentity data for the record with specified userRecordID.

[Foundation.Export("discoverUserIdentityWithUserRecordID:completionHandler:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 12, ObjCRuntime.PlatformArchitecture.Arch64, null)]
public virtual void DiscoverUserIdentity (CloudKit.CKRecordID userRecordID, Action<CloudKit.CKUserIdentity,Foundation.NSError> completionHandler);
abstract member DiscoverUserIdentity : CloudKit.CKRecordID * Action<CloudKit.CKUserIdentity, Foundation.NSError> -> unit
override this.DiscoverUserIdentity : CloudKit.CKRecordID * Action<CloudKit.CKUserIdentity, Foundation.NSError> -> unit

Parameters

userRecordID
CKRecordID
completionHandler
Action<CKUserIdentity,NSError>
Attributes

Remarks

The "identity discovery" methods in CKContainer allow the developer to implement "friends who also use" functionality in their apps. These methods can be used to find user records in the CloudKit container that correspond to entries in the user's address book. No information about the user, beyond the fact that they use the app and agreed to share that status, is available from the CKContainer.

Applies to