public UiViewButtonUpdatedEvent(IAcSession acSession, UiViewButtonBase source, IUiViewButtonUpdateIo input)
     : base(acSession, source)
 {
     if (input == null)
     {
         throw new System.ArgumentNullException("input");
     }
     this.Input = input;
 }
Exemplo n.º 2
0
 public UiViewButtonUpdatedEvent(IAcSession acSession, UiViewButtonBase source, IUiViewButtonUpdateIo input)
     : base(acSession, source)
 {
     if (input == null)
     {
         throw new System.ArgumentNullException("input");
     }
     this.Input = input;
 }
Exemplo n.º 3
0
 public UiViewButtonRemovedEvent(IAcSession acSession, UiViewButtonBase source)
     : base(acSession, source)
 {
 }
Exemplo n.º 4
0
 internal UiViewButtonRemovedEvent(IAcSession acSession, UiViewButtonBase source, bool isPrivate)
     : this(acSession, source)
 {
     this.IsPrivate = isPrivate;
 }
 internal UiViewButtonUpdatedEvent(IAcSession acSession, UiViewButtonBase source, IUiViewButtonUpdateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }
 internal UiViewButtonRemovedEvent(IAcSession acSession, UiViewButtonBase source, bool isPrivate)
     : this(acSession, source)
 {
     this.IsPrivate = isPrivate;
 }
 public UiViewButtonRemovedEvent(IAcSession acSession, UiViewButtonBase source)
     : base(acSession, source)
 {
 }
Exemplo n.º 8
0
 public UiViewButtonAddedEvent(IAcSession acSession, UiViewButtonBase source, IUiViewButtonCreateIo input)
     : base(acSession, source, input)
 {
 }
Exemplo n.º 9
0
 internal UiViewButtonAddedEvent(IAcSession acSession, UiViewButtonBase source, IUiViewButtonCreateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }