ValidatorCallback 委托
定义
表示验证一个对象后要调用的方法。Represents a method to be called after the validation of an object.
public delegate void ValidatorCallback(System::Object ^ value);
public delegate void ValidatorCallback(System::Object ^ o);
public delegate void ValidatorCallback(object value);
public delegate void ValidatorCallback(object o);
type ValidatorCallback = delegate of obj -> unit
Public Delegate Sub ValidatorCallback(value As Object)
Public Delegate Sub ValidatorCallback(o As Object)
参数
- valueo
- Object
回调方法。The callback method.
- 继承
扩展方法
GetMethodInfo(Delegate) |
获取指示指定委托表示的方法的对象。Gets an object that represents the method represented by the specified delegate. |