public string Value(AttributeType type) { if (Has(type)) { return(this[type.ToKey()]); } return(string.Empty); }
public bool Has(AttributeType type) { return(this.Any(a => a.Key == type.ToKey())); }