CmisSync.Lib.SelectiveIgnore.IgnoreFlagChangeDetection.IgnoreFlagChangeDetection C# (CSharp) Метод

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

Initializes a new instance of the CmisSync.Lib.SelectiveIgnore.IgnoreFlagChangeDetection class.
public IgnoreFlagChangeDetection ( IIgnoredEntitiesStorage ignores, IPathMatcher matcher, ISyncEventQueue queue ) : System
ignores IIgnoredEntitiesStorage Storage for ignores.
matcher IPathMatcher Path matcher.
queue ISyncEventQueue Sync Event Queue.
Результат System
        public IgnoreFlagChangeDetection(IIgnoredEntitiesStorage ignores, IPathMatcher matcher, ISyncEventQueue queue) : base(queue) {
            if (ignores == null) {
                throw new ArgumentNullException("ignores");
            }

            if (matcher == null) {
                throw new ArgumentNullException("matcher");
            }

            this.ignores = ignores;
            this.matcher = matcher;
        }
IgnoreFlagChangeDetection