-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ICanNotifyPropertyChanged remaned to ISelectiveNotifyPropertyChanged
ICanNotifyMethodChanged remaned to ISelectiveNotifyMethodChanged Code for the support of selective subscriptions to PropertyChanged and MethodChanged events was commented out
- Loading branch information
1 parent
3cfddda
commit 0179b45
Showing
7 changed files
with
73 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 0 additions & 9 deletions
9
src/ObservableComputations/Common/Interface/ICanNotifyMethodChanged.cs
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
src/ObservableComputations/Common/Interface/ICanNotifyPropertyChanged.cs
This file was deleted.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
src/ObservableComputations/Common/Interface/ISelectiveNotifyMethodChanged.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
using System.ComponentModel; | ||
|
||
namespace ObservableComputations | ||
{ | ||
//public interface ISelectiveNotifyMethodChanged : INotifyMethodChanged | ||
//{ | ||
// bool CanNotifyMethodChanged(string methodName, int argumentsCount, IComputing computing); | ||
//} | ||
} |
9 changes: 9 additions & 0 deletions
9
src/ObservableComputations/Common/Interface/ISelectiveNotifyPropertyChanged.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
using System.ComponentModel; | ||
|
||
namespace ObservableComputations | ||
{ | ||
//public interface ISelectiveNotifyPropertyChanged : INotifyPropertyChanged | ||
//{ | ||
// bool CanNotifyPropertyChanged(string propertyName, IComputing computing); | ||
//} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters