Bari.Core.Model.SourceSetIgnoreLists.Get C# (CSharp) Method

Get() public method

public Get ( SourceSetType type ) : SourceSetIgnoreList
type SourceSetType
return SourceSetIgnoreList
        public SourceSetIgnoreList Get(SourceSetType type)
        {
            SourceSetIgnoreList ignoreList;
            if (!ignoreLists.TryGetValue(type, out ignoreList))
            {
                ignoreList = new SourceSetIgnoreList();
                ignoreLists.Add(type, ignoreList);
            }

            return ignoreList;
        }
SourceSetIgnoreLists