forked from ekalchev/Property-Bindings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGetSetNotificator.cs
40 lines (35 loc) · 960 Bytes
/
GetSetNotificator.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Text;
namespace Utils.DataBindings.UnitTests
{
internal class GetSetNotificator : TestClass
{
public event EventHandler<EventArgs> GetInvoked;
public event EventHandler<EventArgs> SetInvoked;
public int GetCounts { get; private set; }
public int SetCounts { get; private set; }
public void ResetCounts()
{
GetCounts = 0;
SetCounts = 0;
}
public override string Name
{
get
{
GetCounts++;
GetInvoked?.Invoke(this, EventArgs.Empty);
return base.Name;
}
set
{
SetCounts++;
SetInvoked?.Invoke(this, EventArgs.Empty);
base.Name = value;
}
}
}
}