CmisSync.Lib.Config.RepoInfo.GetIgnoredPaths C# (CSharp) Метод

GetIgnoredPaths() публичный Метод

Gets the ignored paths.
public GetIgnoredPaths ( ) : List
Результат List
        public List<string> GetIgnoredPaths() {
            List<string> list = new List<string>();

            foreach (IgnoredFolder folder in this.IgnoredFolders) {
                list.Add(folder.Path);
            }

            return list;
        }