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
メソッドの完了時に呼び出されるハンドラー。
- 属性