diff --git a/Perspex.Base/PerspexObject.cs b/Perspex.Base/PerspexObject.cs index 1d0c3bb661..8d35b9ce8e 100644 --- a/Perspex.Base/PerspexObject.cs +++ b/Perspex.Base/PerspexObject.cs @@ -409,6 +409,12 @@ namespace Perspex return (T)this.GetValue((PerspexProperty)property); } + /// + /// Gets the value of of all properties that are registered on this object. + /// + /// + /// A collection of objects. + /// public IEnumerable GetAllValues() { foreach (PerspexProperty property in this.GetRegisteredProperties()) @@ -426,6 +432,12 @@ namespace Perspex } } + /// + /// Gets all properties that are registered on this object. + /// + /// + /// A collection of objects. + /// public IEnumerable GetRegisteredProperties() { Type type = this.GetType();