Steam Lobby Member Chat Message

Displays a chat message for a given lobby member.

Fields and Attributes

User

public UserData User { get; }

The user who sent this chat message, retrieved from the associated SteamLobbyMemberData.

Data

public byte[] Data { get; private set; }

The raw byte data of the message.

Message

public string Message { get; private set; }

The text content of the chat message.

Received At

public DateTime ReceivedAt { get; private set; }

The timestamp when the message was received.

Type

public EChatEntryType Type { get; private set; }

The type of chat message.

Is Expanded

public bool IsExpanded { get; set; }

Indicates whether the message’s UI is expanded. Expanding shows the expansionPanel.

Functions

Initialize with LobbyChatMsg

public void Initialize(LobbyChatMsg message);

Initializes the chat message using a LobbyChatMsg source. Sets User, Type, Message, Data, and ReceivedAt, and updates the UI elements (message text and datetime).

Last updated