Class TCustomSerializedObject
Unit
BGRADNetDeserial
Declaration
type TCustomSerializedObject = class(TObject)
Description
Abstract class for a serialized .NET object
Hierarchy
- TObject
- TCustomSerializedObject
Overview
Fields
Methods
Properties
Description
Fields
|
idObject: LongWord; |
This item has no description. |
|
inToString: boolean; |
This item has no description. |
|
refCount: integer; |
This item has no description. |
Methods
|
function GetFieldIndex(Name: string): integer; |
This item has no description. |
|
function GetFieldAsString(Name: string): string; overload; |
This item has no description. |
|
function GetFieldAsString(Index: LongWord): string; overload; virtual; abstract; |
This item has no description. |
|
function GetFieldCount: LongWord; virtual; abstract; |
This item has no description. |
|
function GetFieldName(Index: LongWord): string; virtual; abstract; |
This item has no description. |
|
function GetFieldTypeAsString(Index: LongWord): string; virtual; abstract; |
This item has no description. |
|
function GetTypeAsString: string; virtual; abstract; |
This item has no description. |
|
function IsReferenceType(index: LongWord): boolean; virtual; abstract; |
This item has no description. |
Properties
|
property FieldAsString[Index: LongWord]: string read GetFieldAsString; |
This item has no description. |
|
property FieldByNameAsString[Name: string]: string read GetFieldAsString; |
This item has no description. |
|
property FieldCount: LongWord read GetFieldCount; |
This item has no description. |
|
property FieldName[Index: LongWord]: string read GetFieldName; |
This item has no description. |
|
property FieldTypeAsString[Index: LongWord]: string read GetFieldTypeAsString; |
This item has no description. |
|
property TypeAsString: string read GetTypeAsString; |
This item has no description. |