コード例 #1
0
 public PropertyUpdatedEvent(IAcSession acSession, PropertyBase source, IPropertyUpdateIo input)
     : base(acSession, source)
 {
     if (input == null)
     {
         throw new System.ArgumentNullException("input");
     }
     this.Input = input;
 }
コード例 #2
0
 internal PropertyUpdatedEvent(IAcSession acSession, PropertyBase source, IPropertyUpdateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }
コード例 #3
0
ファイル: PropertyRemovedEvent.cs プロジェクト: zszqwe/anycmd
 public PropertyRemovedEvent(IAcSession acSession, PropertyBase source)
     : base(acSession, source)
 {
 }
コード例 #4
0
ファイル: PropertyRemovedEvent.cs プロジェクト: zszqwe/anycmd
 internal PropertyRemovedEvent(IAcSession acSession, PropertyBase source, bool isPrivate)
     : this(acSession, source)
 {
     this.IsPrivate = isPrivate;
 }
コード例 #5
0
 internal PropertyUpdatedEvent(IAcSession acSession, PropertyBase source, IPropertyUpdateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }
コード例 #6
0
ファイル: Events.cs プロジェクト: HuZeHua/InternetDemo
 public PropertyAddedEvent(IAcSession acSession, PropertyBase source, IPropertyCreateIo input)
     : base(acSession, source, input)
 {
 }
コード例 #7
0
 internal PropertyRemovedEvent(IAcSession acSession, PropertyBase source, bool isPrivate)
     : this(acSession, source)
 {
     this.IsPrivate = isPrivate;
 }
コード例 #8
0
 public PropertyRemovedEvent(IAcSession acSession, PropertyBase source)
     : base(acSession, source)
 {
 }