Esempio n. 1
0
    private void GetMetaTags(MetaTags tags, String Name, boolean stopAfterFirst) {
      MetaTag tag;

      for (int x = 0; x < tagList.get_Count(); x++) {
        tag = get_Item(x);
        if (tag != null) {
          if (tag.get_Name().equalsIgnoreCase(Name)) {
            tags.Add(tag);
            if (stopAfterFirst) break;
          }
        }
      }
    }