Exemplo n.º 1
0
 public bool OnSet(PropertyInterceptionInfo propertyInterceptionInfo, object oldValue, object newValue)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 2
0
 public void OnInitialize(PropertyInterceptionInfo propertyInterceptionInfo, object value)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 3
0
 public void OnGet(PropertyInterceptionInfo propertyInterceptionInfo, object value)
 {
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }