CmisSync.Lib.Producer.ContentChange.ContentChangeEventAccumulator.ContentChangeEventAccumulator C# (CSharp) 메소드

ContentChangeEventAccumulator() 공개 메소드

Initializes a new instance of the CmisSync.Lib.Sync.Strategy.ContentChangeEventAccumulator class.
/// Is thrown when an argument passed to a method is invalid because it is . ///
public ContentChangeEventAccumulator ( ISession session, ISyncEventQueue queue ) : System
session ISession /// Cmis Session. ///
queue ISyncEventQueue /// The ISyncEventQueue. ///
리턴 System
        public ContentChangeEventAccumulator(ISession session, ISyncEventQueue queue) : base(queue) {
            if (session == null) {
                throw new ArgumentNullException("session");
            }

            this.session = session;
        }
ContentChangeEventAccumulator