public static RuleSet Fetch(Uri manifestUrl) { var rs = new RuleSet(manifestUrl); rs.update(); return rs; }
public bool Equals(RuleSet other) { if (other == null) { return false; } return (ManifestUrl == other.ManifestUrl) && (Id == other.Id); }