Exemple #1
0
 public void SetProperty(string property, string contents)
 {
     if (this.property.ContainsKey(property))
     {
         this.property[FTagTool.Legalize(property)] = FTagTool.Legalize(contents);
     }
     else
     {
         this.property.Add(FTagTool.Legalize(property), FTagTool.Legalize(contents));
     }
 }
Exemple #2
0
 public string GetProperty(string property)
 {
     return(this.property[FTagTool.Legalize(property)]);
 }
Exemple #3
0
 public bool PropertyExists(string property)
 {
     return(this.property.ContainsKey(FTagTool.Legalize(property)));
 }