InstantReactionLoader.loadInstantReactionProducts C# (CSharp) Method

loadInstantReactionProducts() private method

private loadInstantReactionProducts ( XmlNode node, InstantReaction, ir ) : bool
node XmlNode
ir InstantReaction,
return bool
    private bool loadInstantReactionProducts(XmlNode node, InstantReaction ir)
    {
        foreach (XmlNode attr in node)
          if (attr.Name == "product")
        loadInstantReactionProduct(attr, ir);
        return true;
    }