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.