Class BadgeControl
Definition
- Namespace:
- Tizen.Applications
- Assembly:
- Tizen.Applications.Badge.dll
- API Level:
- 3
The class for badge operation.
C#Copypublic static class BadgeControl
- Inheritance
-
System.ObjectBadgeControl
Methods
Declaration
C#Copypublic static void Add(Badge badge)
Parameters
Type | Name | Description |
---|---|---|
Badge | badge | The Badge object. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when failed because of an invalid argument. |
UnauthorizedAccessException | Thrown when an application does not have the privilege to access. |
System.InvalidOperationException | Thrown in case of failed conditions. |
System.NotSupportedException | Thrown when Badge is not supported. |
API Level: 4
Privilege Level: public
Privilege: http://tizen.org/privilege/notification
Feature: http://tizen.org/feature/badge
Declaration
C#Copypublic static Badge Find(string appId)
Parameters
Type | Name | Description |
---|---|---|
System.String | appId | Application ID. |
Returns
Type | Description |
---|---|
Badge | The Badge object with inputted application ID |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when failed because of an invalid argument. |
UnauthorizedAccessException | Thrown when an application does not have the privilege to access. |
System.InvalidOperationException | Thrown in case of failed conditions. |
System.NotSupportedException | Thrown when Badge is not supported. |
API Level: 3
Privilege Level: public
Privilege: http://tizen.org/privilege/notification
Feature: http://tizen.org/feature/badge
Declaration
C#Copypublic static IEnumerable<Badge> GetBadges()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<Badge> | List of all Badge instances. |
Exceptions
Type | Condition |
---|---|
UnauthorizedAccessException | Thrown when an application does not have the privilege to access. |
System.InvalidOperationException | Thrown in case of failed conditions. |
System.NotSupportedException | Thrown when Badge is not supported. |
API Level: 3
Privilege Level: public
Privilege: http://tizen.org/privilege/notification
Feature: http://tizen.org/feature/badge
Declaration
C#Copypublic static void Remove(string appId)
Parameters
Type | Name | Description |
---|---|---|
System.String | appId | Application ID. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when failed because of a an invalid argument. |
UnauthorizedAccessException | Thrown when an application does not have the privilege to access. |
System.InvalidOperationException | Thrown in case of failed conditions. |
System.NotSupportedException | Thrown when Badge is not supported. |
API Level: 3
Privilege Level: public
Privilege: http://tizen.org/privilege/notification
Feature: http://tizen.org/feature/badge
Declaration
C#Copypublic static void Remove(Badge badge)
Parameters
Type | Name | Description |
---|---|---|
Badge | badge | The Badge object. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when failed because of an invalid argument. |
UnauthorizedAccessException | Thrown when an application does not have the privilege to access. |
System.InvalidOperationException | Thrown in case of failed conditions. |
System.NotSupportedException | Thrown when Badge is not supported. |
API Level: 4
Privilege Level: public
Privilege: http://tizen.org/privilege/notification
Feature: http://tizen.org/feature/badge
Declaration
C#Copypublic static void Update(Badge badge)
Parameters
Type | Name | Description |
---|---|---|
Badge | badge | The Badge object. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when failed because of an invalid argument. |
UnauthorizedAccessException | Thrown when an application does not have the privilege to access. |
System.InvalidOperationException | Thrown in case of failed conditions. |
System.NotSupportedException | Thrown when Badge is not supported. |
API Level: 4
Privilege Level: public
Privilege: http://tizen.org/privilege/notification
Feature: http://tizen.org/feature/badge
Events
Declaration
C#Copypublic static event EventHandler<BadgeEventArgs> Changed
Event Type
Type | Description |
---|---|
System.EventHandler<BadgeEventArgs> |
Exceptions
Type | Condition |
---|---|
System.InvalidOperationException | Thrown in case of failed conditions. |
UnauthorizedAccessException | Thrown when an application does not have the privilege to access. |
System.NotSupportedException | Thrown when Badge is not supported. |