public FunctionUpdatedEvent(IAcSession acSession, FunctionBase source, IFunctionUpdateIo input)
     : base(acSession, source)
 {
     if (input == null)
     {
         throw new System.ArgumentNullException("input");
     }
     this.Input = input;
 }
Example #2
0
 public FunctionRemovedEvent(IAcSession acSession, FunctionBase source)
     : base(acSession, source)
 {
 }
 public FunctionRemovingEvent(IAcSession acSession, FunctionBase source)
     : base(acSession, source)
 {
 }
Example #4
0
 public FunctionAddedEvent(IAcSession acSession, FunctionBase source, IFunctionCreateIo input)
     : base(acSession, source, input)
 {
 }