C# 클래스 Xamarin.Auth.AccountStore.AccountStore

파일 보기 프로젝트 열기: nachocove/Xamarin.Auth

공개 메소드들

메소드 설명
Create ( ) : AccountStore

Create an account store.

Create ( Android.Content.Context context ) : AccountStore

Create an account store.

Delete ( Account account, string serviceId ) : void

Deletes the account for a given serviceId.

FindAccountsForService ( string serviceId ) : IEnumerable

Finds the accounts for a given service.

Save ( Account account, string serviceId ) : void

Save the specified account by combining its username and the serviceId to form a primary key.

메소드 상세

Create() 공개 정적인 메소드

Create an account store.
public static Create ( ) : AccountStore
리턴 AccountStore

Create() 공개 정적인 메소드

Create an account store.
public static Create ( Android.Content.Context context ) : AccountStore
context Android.Content.Context
리턴 AccountStore

Delete() 공개 추상적인 메소드

Deletes the account for a given serviceId.
public abstract Delete ( Account account, string serviceId ) : void
account Account /// Account to delete. ///
serviceId string /// Service identifier. ///
리턴 void

FindAccountsForService() 공개 추상적인 메소드

Finds the accounts for a given service.
public abstract FindAccountsForService ( string serviceId ) : IEnumerable
serviceId string /// Service identifier. ///
리턴 IEnumerable

Save() 공개 추상적인 메소드

Save the specified account by combining its username and the serviceId to form a primary key.
public abstract Save ( Account account, string serviceId ) : void
account Account /// Account to store. ///
serviceId string /// Service identifier. ///
리턴 void