Esempio n. 1
0
 public MatchSuffix(byte[] buffer, ref int offset)
 {
     MatchOperation = (MatchOperationName)BigEndianReader.ReadUInt32(buffer, ref offset);
     if (MatchOperation != MatchOperationName.Exists)
     {
         MatchValue = RequirementExpression.ReadAnsiString(buffer, ref offset);
     }
 }
Esempio n. 2
0
 public MatchSuffix(MatchOperationName matchOperation, string matchValue)
 {
     MatchOperation = matchOperation;
     MatchValue     = matchValue;
 }
Esempio n. 3
0
 public MatchSuffix(MatchOperationName matchOperation)
 {
     MatchOperation = matchOperation;
 }