SerializationUtilsInfoGetValue Method |
Will try to read the value for the field named as the name specified in fieldName.
If the field doesn't exist, null is returned.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax public static Object InfoGetValue(
SerializationInfo info,
string fieldName,
Type typeOfValue
)
Public Shared Function InfoGetValue (
info As SerializationInfo,
fieldName As String,
typeOfValue As Type
) As Object
Parameters
- info
- Type: System.Runtime.SerializationSerializationInfo
info structure which values. - fieldName
- Type: SystemString
name of field to read. Must be boolean field - typeOfValue
- Type: SystemType
type of the value to read
Return Value
Type:
Objectthe value read from info, otherwise false
See Also