Class AccountProvider
Definition
- Namespace:
- Tizen.Account.AccountManager
- Assembly:
- Tizen.Account.AccountManager.dll
- API Level:
- 3
The account ID.
public class AccountProvider : IDisposable
- Inheritance
-
AccountProvider
- Implements
Properties
View SourceAppId
The account ID.
Declaration
public string AppId { get; }
Property Value
Type | Description |
---|---|
String |
API Level: 3
View SourceIconPath
Icon path of the account provider.
Declaration
public string IconPath { get; }
Property Value
Type | Description |
---|---|
String |
API Level: 3
View SourceMultipleAccountSupport
Flag for the account provider if it supports multiple accounts.
Declaration
public bool MultipleAccountSupport { get; }
Property Value
Type | Description |
---|---|
Boolean |
API Level: 3
View SourceServiceProviderId
ServiceProvider ID of the account provider.
Declaration
public string ServiceProviderId { get; }
Property Value
Type | Description |
---|---|
String |
API Level: 3
View SourceSmallIconPath
Small icon path of the account provider.
Declaration
public string SmallIconPath { get; }
Property Value
Type | Description |
---|---|
String |
API Level: 3
Methods
View SourceDispose()
Overloaded Dispose API for destroying the AccountProvider Handle.
Declaration
public void Dispose()
API Level: 3
View SourceDispose(Boolean)
Dispose API for destroying the AccountProvider handle.
Declaration
protected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
Boolean | disposing | The boolean value for destoying AccountProvider handle. |
API Level: 3
View SourceFinalize()
AccountProvider deconstructor.
Declaration
protected void Finalize()
API Level: 3
View SourceGetAllCapabilities()
Retrieves all the capability information of the account provider.
Declaration
public IEnumerable<string> GetAllCapabilities()
Returns
Type | Description |
---|---|
IEnumerable<String> | The list of capability information. |
Exceptions
Type | Condition |
---|---|
InvalidOperationException | In case of any DB error. |
UnauthorizedAccessException | In case of privilege not defined. |
NotSupportedException | The required feature is not supported. |
API Level: 3
Privilege Level: public
Privilege: http://tizen.org/privilege/account.read
Feature: http://tizen.org/feature/account
View SourceGetFeaturesByAppId(String)
Retrieves capability information with the application ID.
Declaration
public static IEnumerable<string> GetFeaturesByAppId(string appId)
Parameters
Type | Name | Description |
---|---|---|
String | appId | The application ID. |
Returns
Type | Description |
---|---|
IEnumerable<String> | Capability information list for the given appId. |
Exceptions
Type | Condition |
---|---|
InvalidOperationException | In case of any DB error or record not found for the given application ID. |
ArgumentException | In case of an invalid parameter. |
UnauthorizedAccessException | In case of privilege not defined. |
NotSupportedException | The required feature is not supported. |
API Level: 3
Privilege Level: public
Privilege: http://tizen.org/privilege/account.read
Feature: http://tizen.org/feature/account
View SourceGetLabel(String)
Gets the specific label information detail of the account provider.
Declaration
public string GetLabel(string locale)
Parameters
Type | Name | Description |
---|---|---|
String | locale | The locale is specified as an ISO 3166 alpha-2 two letter country-code followed by ISO 639-1 for the two-letter language code. For example, "ko_KR" or "ko-kr" for Korean, "en_US" or "en-us" for American English. |
Returns
Type | Description |
---|---|
String | The label text given for the locale. |
Exceptions
Type | Condition |
---|---|
InvalidOperationException | In case of any DB error or record not found for given locale. |
UnauthorizedAccessException | In case of privilege not defined. |
NotSupportedException | The required feature is not supported. |
API Level: 3
Privilege Level: public
Privilege: http://tizen.org/privilege/account.read
Feature: http://tizen.org/feature/account
View SourceGetLabels()
Gets the label information detail of the account provider.
Declaration
public Dictionary<string, string> GetLabels()
Returns
Type | Description |
---|---|
Dictionary<String, String> | All the labels information for the given account provider. |
Exceptions
Type | Condition |
---|---|
InvalidOperationException | In case of any DB error. |
UnauthorizedAccessException | In case of privilege not defined. |
NotSupportedException | The required feature is not supported. |
API Level: 3
Privilege Level: public
Privilege: http://tizen.org/privilege/account.read
Feature: http://tizen.org/feature/account
View SourceGetLabelsByAppId(String)
Gets the specific label information detail of the account provider.
Declaration
public static Dictionary<string, string> GetLabelsByAppId(string appId)
Parameters
Type | Name | Description |
---|---|---|
String | appId | The application ID to search. |
Returns
Type | Description |
---|---|
Dictionary<String, String> | All the labels information for the given application ID. |
Exceptions
Type | Condition |
---|---|
InvalidOperationException | In case of any DB error or record not found for given the application ID. |
ArgumentException | In case of an invalid parameter. |
UnauthorizedAccessException | In case of privilege not defined. |
NotSupportedException | The required feature is not supported. |
API Level: 3
Privilege Level: public
Privilege: http://tizen.org/privilege/account.read
Feature: http://tizen.org/feature/account
View SourceIsAppSupported(String)
Checks whether the given appId exists in the account provider DB.
Declaration
public bool IsAppSupported(string appId)
Parameters
Type | Name | Description |
---|---|---|
String | appId | The application ID to check. |
Returns
Type | Description |
---|---|
Boolean | returns true If App is supported |
Exceptions
Type | Condition |
---|---|
InvalidOperationException | In case of any DB error or record not found for the given application ID. |
ArgumentException | In case of an invalid parameter. |
UnauthorizedAccessException | In case of privilege not defined. |
NotSupportedException | The required feature is not supported. |
API Level: 3
Privilege Level: public
Privilege: http://tizen.org/privilege/account.read
Feature: http://tizen.org/feature/account
View SourceIsFeatureSupportedByApp(String, String)
Checks whether the given application ID supports the capability.
Declaration
public static bool IsFeatureSupportedByApp(string appId, string capability)
Parameters
Type | Name | Description |
---|---|---|
String | appId | The application ID. |
String | capability | The capability information. |
Returns
Type | Description |
---|---|
Boolean | TRUE if the application supports the given capability, otherwise FALSE if the application does not support the given capability |
Exceptions
Type | Condition |
---|---|
InvalidOperationException | In case of any DB error. |
ArgumentException | In case of an invalid parameter. |
UnauthorizedAccessException | In case of privilege not defined. |
NotSupportedException | The required feature is not supported. |