Class LobbyJoinedEventArgs
- Namespace
- SteamNetworkLib.Events
- Assembly
- SteamNetworkLib.dll
Provides data for the lobby joined event. Contains information about the lobby that was joined and the result of the join operation.
public class LobbyJoinedEventArgs : EventArgs
- Inheritance
-
LobbyJoinedEventArgs
- Inherited Members
Constructors
LobbyJoinedEventArgs(LobbyInfo, EResult)
Initializes a new instance of the LobbyJoinedEventArgs class.
public LobbyJoinedEventArgs(LobbyInfo lobby, EResult result = 1)
Parameters
lobby
LobbyInfoThe lobby information for the joined lobby.
result
EResultThe result of the lobby join operation.
Properties
Lobby
Gets the lobby information for the joined lobby.
public LobbyInfo Lobby { get; }
Property Value
Result
Gets the result of the lobby join operation.
public EResult Result { get; }
Property Value
- EResult