次の方法で共有


ACAccountStore.RequestAccess メソッド

定義

オーバーロード

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

アクセスが要求されているアカウントの種類。

options
NSDictionary

Facebook アカウントまたは nullにアクセスするためのオプション。

このパラメーターは、null に設定できます。

completion
ACRequestCompletionHandler

メソッドの完了時に呼び出されるハンドラー。

属性

適用対象