示例#1
0
 public ModelWithoutInvocator()
 {
     Notificator.Create(this);
 }
示例#2
0
 public ModelWithInvalideInvocator()
 {
     Notificator.Create(this);
 }
示例#3
0
 public InternalSetModel()
 {
     Notificator.Create(this);
 }
示例#4
0
 public PrivateSetModel()
 {
     Notificator.Create(this);
 }
示例#5
0
 public ModelWithNotPublicInvocator()
 {
     Notificator.Create(this);
 }
示例#6
0
 public ModelWithMultyInvocator()
 {
     Notificator.Create(this);
 }
示例#7
0
 public NotPublicModel()
 {
     Notificator.Create(this);
 }
示例#8
0
 public NotVirtualModel()
 {
     Notificator.Create(this);
 }
 public ChildAbstructModel()
 {
     Notificator.Create(this);
 }
示例#10
0
 public ModelWithCorrectInvocator()
 {
     Notificator.Create(this);
 }
示例#11
0
 public void FailedTypeTest()
 {
     Assert.Throws(typeof(ArgumentNullException), () => Notificator.Create <INotifyPropertyChanged>(null));
 }
示例#12
0
 public ModelWithInterfaceProperty()
 {
     Notificator.Create(this);
 }
示例#13
0
 public TestModelBase()
 {
     Notificator.Create(this);
 }