CmisSync.Lib.Events.EncapsuledEvent.EncapsuledEvent C# (CSharp) 메소드

EncapsuledEvent() 공개 메소드

Initializes a new instance of the CmisSync.Lib.Events.EncapsuledEvent class with an embedded event.
public EncapsuledEvent ( ISyncEvent e ) : System
e ISyncEvent An Event from another context. Must not be null
리턴 System
        public EncapsuledEvent(ISyncEvent e) {
            if (e == null) {
                throw new ArgumentNullException("e", "A EncapsuledEvent needs a ISyncEvent as parameter, but null was given");
            }

            this.Event = e;
        }