CmisSync.Lib.Queueing.TransmissionManager.AddPathRepoMapping C# (CSharp) 메소드

AddPathRepoMapping() 공개 메소드

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