X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.Account.SyncManager%2FTizen.Account.SyncManager%2FSyncJobData.cs;h=e9f88da59fe42a266e3a09ab394a2ea9cc28258e;hb=bf0dc32c2ce4f0169fae2157907a81cb253c5a71;hp=51c20391fac3e22f18983d4548d63252011db170;hpb=2a5d18b87fbd6e695a4c5e5c9da66ef2dcd640dd;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.Account.SyncManager/Tizen.Account.SyncManager/SyncJobData.cs b/src/Tizen.Account.SyncManager/Tizen.Account.SyncManager/SyncJobData.cs index 51c2039..e9f88da 100755 --- a/src/Tizen.Account.SyncManager/Tizen.Account.SyncManager/SyncJobData.cs +++ b/src/Tizen.Account.SyncManager/Tizen.Account.SyncManager/SyncJobData.cs @@ -20,70 +20,70 @@ using Tizen.Account.AccountManager; namespace Tizen.Account.SyncManager { /// - /// Class represents information about a sync job request + /// This class represents information about the sync job request. /// public class SyncJobData { /// - /// Represents calendar capability + /// Represents the calendar capability. /// /// - /// If you want to receive notification about calendar database change, assign it to SyncJobName property of SyncJobData object. + /// If you want to receive notification about the calendar database change, assign it to the SyncJobName property of the SyncJobData object. /// public const string CalendarCapability = "http://tizen.org/sync/capability/calendar"; /// - /// Represents contact capability + /// Represents the contact capability. /// /// - /// If you want to receive notification about contact database change, assign it to SyncJobName property of SyncJobData object. + /// If you want to receive notification about the contact database change, assign it to the SyncJobName property of the SyncJobData object. /// public const string ContactCapability = "http://tizen.org/sync/capability/contact"; /// - /// Represents image capability + /// Represents the image capability. /// /// - /// If you want to receive notification about image database change, assign it to SyncJobName property of SyncJobData object. + /// If you want to receive notification about the image database change, assign it to the SyncJobName property of the SyncJobData object. /// public const string ImageCapability = "http://tizen.org/sync/capability/image"; /// - /// Represents video capability + /// Represents the video capability. /// /// - /// If you want to receive notification about video database change, assign it to SyncJobName property of SyncJobData object. + /// If you want to receive notification about the video database change, assign it to the SyncJobName property of the SyncJobData object. /// public const string VideoCapability = "http://tizen.org/sync/capability/video"; /// - /// Represents sound capability + /// Represents the sound capability. /// /// - /// If you want to receive notification about sound database change, assign it to SyncJobName property of SyncJobData object. + /// If you want to receive notification about the sound database change, assign it to the SyncJobName property of the SyncJobData object. /// public const string SoundCapability = "http://tizen.org/sync/capability/sound"; /// - /// Represents music capability + /// Represents the music capability. /// /// - /// If you want to receive notification about music database change, assign it to SyncJobName property of SyncJobData object. + /// If you want to receive notification about the music database change, assign it to the SyncJobName property of the SyncJobData object. /// public const string MusicCapability = "http://tizen.org/sync/capability/music"; /// - /// The account instance on which sync operation was requested or @c null in the case of accountless sync operation + /// The account instance on which the sync operation was requested or @c null in the case of the accountless sync operation. /// public AccountManager.Account Account { get; set; } /// - /// User data which contains additional information related registered sync job + /// User data which contains an additional information related to the registered sync job. /// public Bundle UserData { get; set; } /// - /// A string representing a sync job which has been operated or capability setting to operate data change sync job + /// A string representing a sync job which has been operated or capability setting to operate the data change sync job. /// public string SyncJobName { get; set; } }