CmisSync.Edit.Edit C# (CSharp) Method

Edit() public method

Constructor
public Edit ( CmisRepoCredentials credentials, string name, string remotePath, List ignores, string localPath ) : System
credentials CmisSync.Lib.Config.CmisRepoCredentials
name string
remotePath string
ignores List
localPath string
return System
        public Edit(CmisRepoCredentials credentials, string name, string remotePath, List<string> ignores, string localPath)
        {
            FolderName = name;
            this.credentials = credentials;
            this.remotePath = remotePath;
            this.Ignores = new List<string>(ignores);
            this.localPath = localPath;

            CreateEdit();
        }

Same methods

Edit::Edit ( EditType type, CmisRepoCredentials credentials, string name, string remotePath, List ignores, string localPath ) : System