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
方法完成时要调用的处理程序。
- 属性