예제 #1
0
 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;
 }