Sets the record value in the specified field.
Syntax
'Declaration
Protected Overridable Sub SetRecordValue( _
ByVal As System.Object, _
ByVal As System.String, _
ByVal As System.Object _
)
'Usage
Dim instance As ConnectionBase
Dim record As System.Object
Dim field As System.String
Dim value As System.Object
instance.SetRecordValue(record, field, value)
protected virtual void SetRecordValue(
System.object ,
System.string ,
System.object
)
Parameters
- record
- The record object.
- field
- The field name.
- value
- The value to set.
See Also