public Property[] GetPropertyValues(PropertyName[] names) { return (from p in this._properties from pn in names where pn.Equals(p.Name) select p).ToArray(); }
public void SetProperty (PropertyName propertyName, string value) { this.SetProperty(new Property(propertyName, value)); }