Delegate UpdateField
This delegate is used by the Data layer if it has updated - manipulated - the data in a
query, and the client might wish to know.
Assembly: SoDataBase.dll
Syntax
public delegate void UpdateField(FieldInfo whichField, Parameter newValue);
Parameters
Type |
Name |
Description |
FieldInfo |
whichField |
FieldInfo taken from the same TableInfo as the query's table(s)
|
Parameter |
newValue |
The desired new value of the field encapsulated in a parameter.
|
Constructors
UpdateField(Object, IntPtr)
Declaration
public UpdateField(object object, IntPtr method)
Parameters
Methods
BeginInvoke(FieldInfo, Parameter, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(FieldInfo whichField, Parameter newValue, AsyncCallback callback, object object)
Parameters
Returns
EndInvoke(IAsyncResult)
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
Invoke(FieldInfo, Parameter)
Declaration
public virtual void Invoke(FieldInfo whichField, Parameter newValue)
Parameters
Extension Methods
EnumUtil.MapEnums<From, To>(From)