Class OnChanged
- Namespace
- Netick
- Assembly
- Netick.dll
Use this attribute on a method you want to call when a specific property value changes. Example: [OnChanged(nameof(PropertyName)]
Note: if used on network array, the method should have one parameter to be used as an index. If not used on an array, it should be parameterless.
[AttributeUsage(AttributeTargets.Method, Inherited = true, AllowMultiple = false)]
public class OnChanged : Attribute
- Inheritance
-
OnChanged
- Inherited Members
Constructors
OnChanged(string)
public OnChanged(string propertyName)
Parameters
propertyName
string