Table of Contents

Class LobbyCreatedEventArgs

Namespace
SteamNetworkLib.Events
Assembly
SteamNetworkLib.dll

Provides data for the lobby created event. Contains information about the newly created lobby and the result of the creation operation.

public class LobbyCreatedEventArgs : EventArgs
Inheritance
LobbyCreatedEventArgs
Inherited Members

Constructors

LobbyCreatedEventArgs(LobbyInfo, EResult)

Initializes a new instance of the LobbyCreatedEventArgs class.

public LobbyCreatedEventArgs(LobbyInfo lobby, EResult result = 1)

Parameters

lobby LobbyInfo

The lobby information for the created lobby.

result EResult

The result of the lobby creation operation.

Properties

Lobby

Gets the lobby information for the created lobby.

public LobbyInfo Lobby { get; }

Property Value

LobbyInfo

Result

Gets the result of the lobby creation operation.

public EResult Result { get; }

Property Value

EResult