Class TBoardPostListing

Unit

Declaration

type TBoardPostListing = class(TInterfacedObject, IBoardPostListing)

Description

An entry in the list of town board posts

Hierarchy

Overview

Methods

Public function GetByteSize: Cardinal;
Public function GetPostId: Cardinal;
Public procedure SetPostId(PostId: Cardinal);
Public function GetAuthor: string;
Public procedure SetAuthor(Author: string);
Public function GetSubject: string;
Public procedure SetSubject(Subject: string);
Public procedure Serialize(Writer: TEoWriter);
Public class function Deserialize(Reader: TEoReader): TBoardPostListing;

Properties

Public property ByteSize: Cardinal read GetByteSize;
Public property PostId: Cardinal read GetPostId write SetPostId;
Public property Author: string read GetAuthor write SetAuthor;
Public property Subject: string read GetSubject write SetSubject;

Description

Methods

Public function GetByteSize: Cardinal;

This item has no description.

Public function GetPostId: Cardinal;

This item has no description.

Public procedure SetPostId(PostId: Cardinal);

This item has no description.

Public function GetAuthor: string;

This item has no description.

Public procedure SetAuthor(Author: string);

This item has no description.

Public function GetSubject: string;

This item has no description.

Public procedure SetSubject(Subject: string);

This item has no description.

Public procedure Serialize(Writer: TEoWriter);

Serializes this TBoardPostListing object to the provided TEoWriter.

Parameters
Writer
The writer that this object will be serialized to
Public class function Deserialize(Reader: TEoReader): TBoardPostListing;

Deserializes an instance of TBoardPostListing from the provided TEoReader.

Parameters
Reader
The reader that the object will be deserialized from
Returns

The deserialized object

Properties

Public property ByteSize: Cardinal read GetByteSize;

The size of the data that this object was deserialized from.

Note
0 if the instance was not created by the Deserialize method.

Public property PostId: Cardinal read GetPostId write SetPostId;

Note
Value range is 0-64008

Public property Author: string read GetAuthor write SetAuthor;

This item has no description.

Public property Subject: string read GetSubject write SetSubject;

This item has no description.


Generated by PasDoc 0.16.0-snapshot.