public PropertyUpdatedEvent(IAcSession acSession, PropertyBase source, IPropertyUpdateIo input) : base(acSession, source) { if (input == null) { throw new System.ArgumentNullException("input"); } this.Input = input; }
internal PropertyUpdatedEvent(IAcSession acSession, PropertyBase source, IPropertyUpdateIo input, bool isPrivate) : this(acSession, source, input) { this.IsPrivate = isPrivate; }
public PropertyRemovedEvent(IAcSession acSession, PropertyBase source) : base(acSession, source) { }
internal PropertyRemovedEvent(IAcSession acSession, PropertyBase source, bool isPrivate) : this(acSession, source) { this.IsPrivate = isPrivate; }
public PropertyAddedEvent(IAcSession acSession, PropertyBase source, IPropertyCreateIo input) : base(acSession, source, input) { }