X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.Pims.Calendar%2FTizen.Pims.Calendar%2FCalendarRecord.cs;h=bafeb79f1612750bae23b462f48d005dd35ed8e0;hb=refs%2Ftags%2Fsubmit%2Ftizen_4.0%2F20170926.150019;hp=7d458e65e8ce883019a25b458b946d3ceff027b4;hpb=a8652b01063f04c5fe21d813884514493b59234d;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarRecord.cs b/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarRecord.cs index 7d458e6..bafeb79 100644 --- a/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarRecord.cs +++ b/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarRecord.cs @@ -23,6 +23,7 @@ namespace Tizen.Pims.Calendar /// /// A record represents an actual record in the database /// + /// 4 /// /// A record represents an actual record in the database, /// but you can also consider it a piece of information, such as an alarm, attendee and extended. @@ -90,8 +91,10 @@ namespace Tizen.Pims.Calendar /// /// Creates a record. /// + /// 4 + /// http://tizen.org/feature/calendar /// The view URI - /// Thrown when an invoked method is not supported + /// Thrown when feature is not supported /// Thrown when one of the arguments provided to a method is not valid /// Thrown when failed due to out of memory [SuppressMessage("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings")] @@ -193,9 +196,12 @@ namespace Tizen.Pims.Calendar /// /// Makes a clone of a record. /// + /// 4 /// /// A cloned record /// + /// http://tizen.org/feature/calendar + /// Thrown when feature is not supported /// Thrown when failed due to out of memory public CalendarRecord Clone() { @@ -212,6 +218,7 @@ namespace Tizen.Pims.Calendar /// /// Get record URI. /// + /// 4 /// The URI of the record [SuppressMessage("Microsoft.Design", "CA1056:UriPropertiesShouldNotBeStrings")] public string Uri @@ -225,10 +232,13 @@ namespace Tizen.Pims.Calendar /// /// Gets a object from a record. /// + /// 4 /// The property ID /// /// The value of the property corresponding to property id. /// + /// http://tizen.org/feature/calendar + /// Thrown when feature is not supported /// Thrown when one of the arguments provided to a method is not valid public T Get(uint propertyId) { @@ -300,8 +310,11 @@ namespace Tizen.Pims.Calendar /// /// Sets a value of the property to a record. /// + /// 4 /// The property ID /// value + /// http://tizen.org/feature/calendar + /// Thrown when feature is not supported /// Thrown when one of the arguments provided to a method is not valid public void Set(uint propertyId, T value) { @@ -366,8 +379,11 @@ namespace Tizen.Pims.Calendar /// /// Adds a child record to the parent record. /// + /// 4 /// The property ID /// The child record + /// http://tizen.org/feature/calendar + /// Thrown when feature is not supported /// Thrown when one of the arguments provided to a method is not valid public void AddChildRecord(uint propertyId, CalendarRecord childRecord) { @@ -383,8 +399,11 @@ namespace Tizen.Pims.Calendar /// /// Removes a child record from the parent record. /// + /// 4 /// The property ID /// The child record + /// http://tizen.org/feature/calendar + /// Thrown when feature is not supported /// Thrown when one of the arguments provided to a method is not valid public void RemoveChildRecord(uint propertyId, CalendarRecord childRecord) { @@ -400,10 +419,13 @@ namespace Tizen.Pims.Calendar /// /// Gets a child record from the parent record /// + /// 4 /// The property ID /// /// The number of child records corresponding to property ID /// + /// http://tizen.org/feature/calendar + /// Thrown when feature is not supported /// Thrown when one of the arguments provided to a method is not valid public int GetChildRecordCount(uint propertyId) { @@ -420,11 +442,14 @@ namespace Tizen.Pims.Calendar /// /// Gets a child record from the parent record /// + /// 4 /// The property ID /// The child record index /// /// The record /// + /// http://tizen.org/feature/calendar + /// Thrown when feature is not supported /// Thrown when one of the arguments provided to a method is not valid public CalendarRecord GetChildRecord(uint propertyId, int index) { @@ -442,10 +467,13 @@ namespace Tizen.Pims.Calendar /// /// Clones a child record list corresponding to property ID /// + /// 4 /// The property ID /// /// the record list /// + /// http://tizen.org/feature/calendar + /// Thrown when feature is not supported /// Thrown when one of the arguments provided to a method is not valid public CalendarList CloneChildRecordList(uint propertyId) {