Class SyncJobData

Definition

Namespace:
Tizen.Account.SyncManager
Assembly:
Tizen.Account.SyncManager.dll
API Level:
4

This class represents information about the sync job request.

C#
Copy
public class SyncJobData : object
Inheritance
SyncJobData

Fields

View Source

CalendarCapability

Represents the calendar capability.

Declaration
C#
Copy
public const string CalendarCapability = null
Field Value
Type Description
String
Remarks

If you want to receive notification about the calendar database change, assign it to the SyncJobName property of the SyncJobData object.

API Level: 4
View Source

ContactCapability

Represents the contact capability.

Declaration
C#
Copy
public const string ContactCapability = null
Field Value
Type Description
String
Remarks

If you want to receive notification about the contact database change, assign it to the SyncJobName property of the SyncJobData object.

API Level: 4
View Source

ImageCapability

Represents the image capability.

Declaration
C#
Copy
public const string ImageCapability = null
Field Value
Type Description
String
Remarks

If you want to receive notification about the image database change, assign it to the SyncJobName property of the SyncJobData object.

API Level: 4
View Source

MusicCapability

Represents the music capability.

Declaration
C#
Copy
public const string MusicCapability = null
Field Value
Type Description
String
Remarks

If you want to receive notification about the music database change, assign it to the SyncJobName property of the SyncJobData object.

API Level: 4
View Source

SoundCapability

Represents the sound capability.

Declaration
C#
Copy
public const string SoundCapability = null
Field Value
Type Description
String
Remarks

If you want to receive notification about the sound database change, assign it to the SyncJobName property of the SyncJobData object.

API Level: 4
View Source

VideoCapability

Represents the video capability.

Declaration
C#
Copy
public const string VideoCapability = null
Field Value
Type Description
String
Remarks

If you want to receive notification about the video database change, assign it to the SyncJobName property of the SyncJobData object.

API Level: 4

Properties

View Source

Account

The account instance on which the sync operation was requested or @c null in the case of the accountless sync operation.

Declaration
C#
Copy
public Account Account { get; set; }
Property Value
Type Description
Account
API Level: 4
View Source

SyncJobName

A string representing a sync job which has been operated or capability setting to operate the data change sync job.

Declaration
C#
Copy
public string SyncJobName { get; set; }
Property Value
Type Description
String
API Level: 4
View Source

UserData

User data which contains an additional information related to the registered sync job.

Declaration
C#
Copy
public Bundle UserData { get; set; }
Property Value
Type Description
Bundle
API Level: 4

Extension Methods