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