C# Class DirkSarodnick.GoogleSync.Core.Sync.SyncBase

Defines the SyncBase class.
Inheritance: ISync
ファイルを表示 Open project: d03n3rfr1tz3/GoogleSync

Public Methods

Method Description
Dispose ( ) : void

Releases unmanaged and - optionally - managed resources

ItemChanged ( object item ) : void

Items the changed.

Sync ( ) : void

Syncs this instance.

Protected Methods

Method Description
SyncBase ( Data.DataRepository repository ) : Data

Initializes a new instance of the SyncBase class.

Method Details

Dispose() public abstract method

Releases unmanaged and - optionally - managed resources
public abstract Dispose ( ) : void
return void

ItemChanged() public abstract method

Items the changed.
public abstract ItemChanged ( object item ) : void
item object The item.
return void

Sync() public abstract method

Syncs this instance.
public abstract Sync ( ) : void
return void

SyncBase() protected method

Initializes a new instance of the SyncBase class.
protected SyncBase ( Data.DataRepository repository ) : Data
repository Data.DataRepository The repository.
return Data