CmisSync.Lib.Producer.ContentChange.ContentChangeEventAccumulator.ContentChangeEventAccumulator C# (CSharp) Method

ContentChangeEventAccumulator() public method

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. ///
return System
        public ContentChangeEventAccumulator(ISession session, ISyncEventQueue queue) : base(queue) {
            if (session == null) {
                throw new ArgumentNullException("session");
            }

            this.session = session;
        }
ContentChangeEventAccumulator