コード例 #1
0
ファイル: RejectBadBits.cs プロジェクト: sachabarber/AkkaDemo
 public RejectBadBits(string filePath, BadBits badBits)
 {
     FilePath = filePath;
     BadBits = badBits;
 }
コード例 #2
0
 public DataPartiallyValid(string fullFilePath, GoodBits goodBits, BadBits badBits)
     : base(fullFilePath)
 {
     GoodBits = goodBits;
     BadBits = badBits;
 }
コード例 #3
0
 public PartiallyRejected(string fullFilePath, BadBits badBits)
     : base(fullFilePath)
 {
     BadBits = badBits;
 }