CmisSync.Lib.Queueing.TransmissionManager.AddPathRepoMapping C# (CSharp) Method

AddPathRepoMapping() public method

Adds the path repo mapping entry to internal storage.
public AddPathRepoMapping ( string path, string repoName ) : void
path string Local path.
repoName string Repo name.
return void
        public void AddPathRepoMapping(string path, string repoName) {
            lock (this.collectionLock) {
                this.pathToRepoNameMapping[path] = repoName;
            }
        }