コード例 #1
0
ファイル: RuleSet.cs プロジェクト: GaloisInc/FiveUI
 public static RuleSet Fetch(Uri manifestUrl)
 {
     var rs = new RuleSet(manifestUrl);
     rs.update();
     return rs;
 }
コード例 #2
0
ファイル: RuleSet.cs プロジェクト: GaloisInc/FiveUI
 public bool Equals(RuleSet other)
 {
     if (other == null)
     {
         return false;
     }
     return (ManifestUrl == other.ManifestUrl) && (Id == other.Id);
 }