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
方法完成時要呼叫的處理常式。
- 屬性