Example #1
0
 public bool OnSet(PropertyInterceptionInfo propertyInterceptionInfo, object oldValue, object newValue)
 {
     throw new NotImplementedException();
 }
Example #2
0
 public void OnInitialize(PropertyInterceptionInfo propertyInterceptionInfo, object value)
 {
     throw new NotImplementedException();
 }
Example #3
0
 public void OnGet(PropertyInterceptionInfo propertyInterceptionInfo, object value)
 {
 }
Example #4
0
 /// <exclude/>
 public bool OnSet(PropertyInterceptionInfo propertyInterceptionInfo, object oldValue, object newValue)
 {
     this.memberName = propertyInterceptionInfo.DeclaringType.FullName + "." + propertyInterceptionInfo.PropertyName;
     Debug.WriteLine("Start execution of '{0}'", this.memberName);
     return(false);
 }
Example #5
0
 /// <exclude/>
 public void OnGet(PropertyInterceptionInfo propertyInterceptionInfo, object value)
 {
     this.memberName = propertyInterceptionInfo.DeclaringType.FullName + "." + propertyInterceptionInfo.PropertyName;
     Debug.WriteLine("Start execution of '{0}'", this.memberName);
 }
 public bool OnSet(PropertyInterceptionInfo propertyInterceptionInfo, object oldValue, object newValue)
 {
     this.onSetMethod?.Invoke(propertyInterceptionInfo.PropertyName, newValue);
     return(false);
 }