From 3479dc7b5a9c6a7d2dff9f0b60187e26acf4649b Mon Sep 17 00:00:00 2001 From: Steven Kirk Date: Tue, 5 May 2015 10:40:42 +0200 Subject: [PATCH] Added missing doc comments. --- Perspex.Base/PerspexObject.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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();