CmisSync.Lib.Events.ContentChangeEvent.ContentChangeEvent C# (CSharp) Метод

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

Initializes a new instance of the CmisSync.Lib.Events.ContentChangeEvent class.
public ContentChangeEvent ( DotCMIS type, string objectId ) : System
type DotCMIS /// Type of the change. ///
objectId string /// Object identifier. ///
Результат System
        public ContentChangeEvent(DotCMIS.Enums.ChangeType? type, string objectId) {
            if (objectId == null) {
                throw new ArgumentNullException("objectId");
            }

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

            this.Type = (DotCMIS.Enums.ChangeType)type;
            this.ObjectId = objectId;
        }