Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SunboX/Prism.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatheusneder@gmail.com <matheusao>2017-05-13 20:21:11 +0300
committermatheusneder@gmail.com <matheusao>2017-05-13 20:21:11 +0300
commitee5d1f89540e1df882130b829196bb034e52c34d (patch)
tree0acbc90ea0ae74901e95fcc83bb964b72725d24a
parent7ae0af9aefe80f52d6bbf36a80a4ad8d48cb49de (diff)
Changed PropertyObserver's visibility from public to internal since it does not make parts of Prism public API.
-rw-r--r--Source/Prism/Commands/PropertyObserver.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Prism/Commands/PropertyObserver.cs b/Source/Prism/Commands/PropertyObserver.cs
index 7850123..16f5c6b 100644
--- a/Source/Prism/Commands/PropertyObserver.cs
+++ b/Source/Prism/Commands/PropertyObserver.cs
@@ -9,7 +9,7 @@ namespace Prism.Commands
/// Provide a way to observe property changes of INotifyPropertyChanged objects and invokes a
/// custom action when the PropertyChanged event is fired.
/// </summary>
- public class PropertyObserver
+ internal class PropertyObserver
{
private readonly Expression _propertyExpression;
private readonly Action _action;