CmisSync.Lib.Filter.IgnoreAlreadyHandledFsEventsFilter.IgnoreAlreadyHandledFsEventsFilter C# (CSharp) 메소드

IgnoreAlreadyHandledFsEventsFilter() 공개 메소드

Initializes a new instance of the CmisSync.Lib.Filter.IgnoreAlreadyHandledFsEventsFilter class.
public IgnoreAlreadyHandledFsEventsFilter ( IMetaDataStorage storage, IFileSystemInfoFactory fsFactory = null ) : System
storage IMetaDataStorage Storage instance.
fsFactory IFileSystemInfoFactory Fs factory.
리턴 System
        public IgnoreAlreadyHandledFsEventsFilter(IMetaDataStorage storage, IFileSystemInfoFactory fsFactory = null) {
            if (storage == null) {
                throw new ArgumentNullException("storage");
            }

            this.storage = storage;
            this.fsFactory = fsFactory ?? new FileSystemInfoFactory();
        }
IgnoreAlreadyHandledFsEventsFilter