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)); } }
public string GetProperty(string property) { return(this.property[FTagTool.Legalize(property)]); }
public bool PropertyExists(string property) { return(this.property.ContainsKey(FTagTool.Legalize(property))); }