Class CalendarList
Definition
- Namespace:
- Tizen.Pims.Calendar
- Assembly:
- Tizen.Pims.Calendar.dll
- API Level:
- 4
A list of records with the same type.
C#Copypublic class CalendarList : IDisposable
- Inheritance
-
CalendarList
- Implements
-
System.IDisposable
Constructors
Declaration
C#Copypublic CalendarList()
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown when the feature is not supported. |
OutOfMemoryException | Thrown when failed due to out of memory. |
API Level: 4
Feature: http://tizen.org/feature/calendar
Properties
Declaration
C#Copypublic int Count { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The count of the calendar entity. |
API Level: 4
Methods
Declaration
C#Copypublic void AddRecord(CalendarRecord record)
Parameters
Type | Name | Description |
---|---|---|
CalendarRecord | record | The record to be added. |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown when the feature is not supported. |
API Level: 4
Feature: http://tizen.org/feature/calendar
Dispose()
Releases all resources used by the CalendarList. It should be called after it has finished using the object.
Declaration
C#Copypublic void Dispose()
API Level: 4
Dispose(Boolean)
Disposes off the resources (other than memory) used by the CalendarList.
Declaration
C#Copyprotected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
Boolean | disposing | true to release both managed and unmanaged resources, false to release only unmanaged resources. |
API Level: 4
Declaration
C#Copyprotected void Finalize()
Declaration
C#Copypublic CalendarRecord GetCurrentRecord()
Returns
Type | Description |
---|---|
CalendarRecord | The calendar record. |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown when the feature is not supported. |
API Level: 4
Feature: http://tizen.org/feature/calendar
Declaration
C#Copypublic void MoveFirst()
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown when the feature is not supported. |
API Level: 4
Feature: http://tizen.org/feature/calendar
Declaration
C#Copypublic void MoveLast()
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown when the feature is not supported. |
API Level: 4
Feature: http://tizen.org/feature/calendar
Declaration
C#Copypublic bool MoveNext()
Returns
Type | Description |
---|---|
Boolean | If the cursor is moved to the end, it returns false. |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown when the feature is not supported. |
API Level: 4
Feature: http://tizen.org/feature/calendar
Declaration
C#Copypublic bool MovePrevious()
Returns
Type | Description |
---|---|
Boolean | If the cursor is moved to the end, it returns false. |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown when the feature is not supported. |
API Level: 4
Feature: http://tizen.org/feature/calendar
Declaration
C#Copypublic void RemoveRecord(CalendarRecord record)
Parameters
Type | Name | Description |
---|---|---|
CalendarRecord | record | The record to be removed. |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown when the feature is not supported. |