[This is preliminary documentation and is subject to change.]
Injects function that tries to set field value. May elect to skip the set and return false to indicate failure(instead of throwing exception)
Namespace: NFX.DataAccess.CRUDAssembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
public delegate bool SetFieldFunc(
Row row,
Schema..::..FieldDef fdef,
Object val
)
public delegate bool SetFieldFunc(
Row row,
Schema..::..FieldDef fdef,
Object val
)
Public Delegate Function SetFieldFunc (
row As Row,
fdef As Schema..::..FieldDef,
val As Object
) As Boolean
Public Delegate Function SetFieldFunc (
row As Row,
fdef As Schema..::..FieldDef,
val As Object
) As Boolean
public delegate bool SetFieldFunc(
Row^ row,
Schema..::..FieldDef^ fdef,
Object^ val
)
public delegate bool SetFieldFunc(
Row^ row,
Schema..::..FieldDef^ fdef,
Object^ val
)
type SetFieldFunc =
delegate of
row : Row *
fdef : Schema..::..FieldDef *
val : Object -> bool
type SetFieldFunc =
delegate of
row : Row *
fdef : Schema..::..FieldDef *
val : Object -> bool
Return Value
Type:
Boolean