Exemplo n.º 1
0
 public UiViewUpdatedEvent(IAcSession acSession, UiViewBase source, IUiViewUpdateIo input)
     : base(acSession, source)
 {
     if (input == null)
     {
         throw new System.ArgumentNullException("input");
     }
     this.Input = input;
 }
Exemplo n.º 2
0
 public UiViewUpdatedEvent(IAcSession acSession, UiViewBase source, IUiViewUpdateIo input)
     : base(acSession, source)
 {
     if (input == null)
     {
         throw new System.ArgumentNullException("input");
     }
     this.Input = input;
 }
Exemplo n.º 3
0
 internal UiViewUpdatedEvent(IAcSession acSession, UiViewBase source, IUiViewUpdateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }
Exemplo n.º 4
0
 public UiViewRemovingEvent(IAcSession acSession, UiViewBase source)
     : base(acSession, source)
 {
 }
Exemplo n.º 5
0
 internal UiViewRemovedEvent(IAcSession acSession, UiViewBase source, bool isPrivate)
     : this(acSession, source)
 {
     this.IsPrivate = isPrivate;
 }
Exemplo n.º 6
0
 public UiViewAddedEvent(IAcSession acSession, UiViewBase source, IUiViewCreateIo input)
     : base(acSession, source, input)
 {
 }
Exemplo n.º 7
0
 internal UiViewAddedEvent(IAcSession acSession, UiViewBase source, IUiViewCreateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }
Exemplo n.º 8
0
 public UiViewRemovingEvent(IAcSession acSession, UiViewBase source)
     : base(acSession, source)
 {
 }
Exemplo n.º 9
0
 internal UiViewRemovedEvent(IAcSession acSession, UiViewBase source, bool isPrivate)
     : this(acSession, source)
 {
     this.IsPrivate = isPrivate;
 }