ACAccountStore.RequestAccess 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
RequestAccess(ACAccountType, ACRequestCompletionHandler) |
개발자는 이 사용되지 않는 메서드를 사용하면 안 됩니다. 개발자는 대신 'RequestAccess(ACAccountType, AccountStoreOptions, ACRequestCompletionHandler)'를 사용해야 합니다. |
RequestAccess(ACAccountType, AccountStoreOptions, ACRequestCompletionHandler) |
소셜 계정 유형에 대한 액세스를 요청합니다. |
RequestAccess(ACAccountType, NSDictionary, ACRequestCompletionHandler) |
소셜 계정 유형에 대한 액세스를 요청합니다. |
RequestAccess(ACAccountType, ACRequestCompletionHandler)
개발자는 이 사용되지 않는 메서드를 사용하면 안 됩니다. 개발자는 대신 'RequestAccess(ACAccountType, AccountStoreOptions, ACRequestCompletionHandler)'를 사용해야 합니다.
[Foundation.Export("requestAccessToAccountsWithType:withCompletionHandler:")]
[ObjCRuntime.Deprecated(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, "Use 'RequestAccess (ACAccountType, AccountStoreOptions, ACRequestCompletionHandler)' instead.")]
public virtual void RequestAccess (Accounts.ACAccountType accountType, Accounts.ACRequestCompletionHandler completionHandler);
abstract member RequestAccess : Accounts.ACAccountType * Accounts.ACRequestCompletionHandler -> unit
override this.RequestAccess : Accounts.ACAccountType * Accounts.ACRequestCompletionHandler -> unit
매개 변수
- accountType
- ACAccountType
액세스가 요청되는 계정 유형입니다.
- completionHandler
- ACRequestCompletionHandler
메서드가 완료될 때 호출할 처리기입니다.
- 특성
적용 대상
RequestAccess(ACAccountType, AccountStoreOptions, ACRequestCompletionHandler)
소셜 계정 유형에 대한 액세스를 요청합니다.
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public void RequestAccess (Accounts.ACAccountType accountType, Accounts.AccountStoreOptions options, Accounts.ACRequestCompletionHandler completion);
member this.RequestAccess : Accounts.ACAccountType * Accounts.AccountStoreOptions * Accounts.ACRequestCompletionHandler -> unit
매개 변수
- accountType
- ACAccountType
액세스가 요청되는 계정 유형입니다.
- options
- AccountStoreOptions
Facebook 계정 또는 null
에 액세스하기 위한 옵션입니다.
- completion
- ACRequestCompletionHandler
메서드가 완료될 때 호출할 처리기입니다.
- 특성
설명
애플리케이션 개발자는 메서드를 사용하여 개체를 accountType
검색할 FindAccountType(String) 수 있습니다.
var objStore = new ACAccountStore();
var options = new AccountStoreOptions();
objStore.RequestAccess(objStore.FindAccountType(ACAccountType.Facebook), options, (granted, error) => { });
추가 정보
적용 대상
RequestAccess(ACAccountType, NSDictionary, ACRequestCompletionHandler)
소셜 계정 유형에 대한 액세스를 요청합니다.
[Foundation.Export("requestAccessToAccountsWithType:options:completion:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
protected virtual void RequestAccess (Accounts.ACAccountType accountType, Foundation.NSDictionary options, Accounts.ACRequestCompletionHandler completion);
abstract member RequestAccess : Accounts.ACAccountType * Foundation.NSDictionary * Accounts.ACRequestCompletionHandler -> unit
override this.RequestAccess : Accounts.ACAccountType * Foundation.NSDictionary * Accounts.ACRequestCompletionHandler -> unit
매개 변수
- accountType
- ACAccountType
액세스가 요청되는 계정 유형입니다.
- completion
- ACRequestCompletionHandler
메서드가 완료될 때 호출할 처리기입니다.
- 특성