| SerializationUtilsInfoGetBoolean Method  | 
 
            Will try to read the value for the field named as the name specified in fieldName.
            If the field doesn't exist, false is returned.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntaxpublic static bool InfoGetBoolean(
	SerializationInfo info,
	string fieldName
)
Public Shared Function InfoGetBoolean ( 
	info As SerializationInfo,
	fieldName As String
) As Boolean
Parameters
- info
 - Type: System.Runtime.SerializationSerializationInfo
info structure which values. - fieldName
 - Type: SystemString
name of field to read. Must be boolean field 
Return Value
Type: 
Booleanthe value read from info, otherwise false
See Also