Machine.UrlStrong.Translation.Parsing.PrioritizedLineParser.Parse C# (CSharp) Method

Parse() public method

public Parse ( string line, IParseListener resultBuilder ) : bool
line string
resultBuilder IParseListener
return bool
    public bool Parse(string line, IParseListener resultBuilder)
    {
      foreach (var parser in _lineParsers)
      {
        var parsed = parser.Parse(line, resultBuilder);
        if (parsed) return true;
      }

      return false;
    }
  }
PrioritizedLineParser