コード例 #1
0
 public SsdSetUpdatedEvent(IAcSession acSession, SsdSetBase source, ISsdSetUpdateIo output)
     : base(acSession, source)
 {
     if (output == null)
     {
         throw new System.ArgumentNullException("output");
     }
     this.Output = output;
 }
コード例 #2
0
ファイル: SsdSetUpdatedEvent.cs プロジェクト: zszqwe/anycmd
 public SsdSetUpdatedEvent(IAcSession acSession, SsdSetBase source, ISsdSetUpdateIo output)
     : base(acSession, source)
 {
     if (output == null)
     {
         throw new System.ArgumentNullException("output");
     }
     this.Output = output;
 }
コード例 #3
0
ファイル: SsdSetUpdatedEvent.cs プロジェクト: zszqwe/anycmd
 internal SsdSetUpdatedEvent(IAcSession acSession, SsdSetBase source, ISsdSetUpdateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }
コード例 #4
0
 public SsdSetRemovedEvent(IAcSession acSession, SsdSetBase source)
     : base(acSession, source)
 {
 }
コード例 #5
0
 internal SsdSetRemovedEvent(IAcSession acSession, SsdSetBase source, bool isPrivate)
     : this(acSession, source)
 {
     this.IsPrivate = isPrivate;
 }
コード例 #6
0
 internal SsdSetUpdatedEvent(IAcSession acSession, SsdSetBase source, ISsdSetUpdateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }
コード例 #7
0
ファイル: Events.cs プロジェクト: HuZeHua/InternetDemo
 internal SsdSetRemovedEvent(IAcSession acSession, SsdSetBase source, bool isPrivate)
     : this(acSession, source)
 {
     this.IsPrivate = isPrivate;
 }
コード例 #8
0
ファイル: Events.cs プロジェクト: HuZeHua/InternetDemo
 public SsdSetRemovedEvent(IAcSession acSession, SsdSetBase source)
     : base(acSession, source)
 {
 }
コード例 #9
0
ファイル: Events.cs プロジェクト: HuZeHua/InternetDemo
 public SsdSetAddedEvent(IAcSession acSession, SsdSetBase source, ISsdSetCreateIo output)
     : base(acSession, source, output)
 {
 }