Beispiel #1
0
 private void ReadResponsesObject(YamlNode re)
 {
     foreach (var r in re.Children())
     {
         this.ReadResponseObject(r.Value);
     }
 }
Beispiel #2
0
 private void ReadPaths(YamlNode p)
 {
     foreach (var ch in p.Children())
     {
         var path = ch.Key.AsString();
         try
         {
             ReadPathItem(ch.Value);
         }
         catch (Exception x)
         {
             throw new YamlError(x, p, "...while reading path " + path);
         }
     }
 }