C# Class CmisSync.Lib.RemotePathSyncItem

SyncItem created from a remote file or folder. Its match might or might not exist yet on the local side.
Inheritance: SyncItem
Show file Open project: aegif/CmisSync Class Usage Examples

Public Methods

Method Description
RemotePathSyncItem ( string remoteFolderPath, bool isFolder, RepoInfo repoInfo, Database database ) : System

Use only for folders, not for documents!

RemotePathSyncItem ( string remoteRelativePath, string localFilename, RepoInfo repoInfo, Database database ) : System

Create from the path of a remote file, and the local filename to use.

RemotePathSyncItem ( string remoteFolderPath, string remoteDocumentName, string localFilename, bool isFolder, RepoInfo repoInfo, Database database ) : System

Method Details

RemotePathSyncItem() public method

Use only for folders, not for documents!
public RemotePathSyncItem ( string remoteFolderPath, bool isFolder, RepoInfo repoInfo, Database database ) : System
remoteFolderPath string Example: /sites/aproject/adir
isFolder bool
repoInfo RepoInfo
database Database
return System

RemotePathSyncItem() public method

Create from the path of a remote file, and the local filename to use.
public RemotePathSyncItem ( string remoteRelativePath, string localFilename, RepoInfo repoInfo, Database database ) : System
remoteRelativePath string Example: adir/a
localFilename string Example: afile.txt
repoInfo RepoInfo
database Database
return System

RemotePathSyncItem() public method

public RemotePathSyncItem ( string remoteFolderPath, string remoteDocumentName, string localFilename, bool isFolder, RepoInfo repoInfo, Database database ) : System
remoteFolderPath string
remoteDocumentName string
localFilename string
isFolder bool
repoInfo RepoInfo
database Database
return System