Steamworks.SteamMatchmaking.GetLobbyData C# (CSharp) Méthode

GetLobbyData() public static méthode

Get data associated with this lobby

takes a simple key, and returns the string associated with it

"" will be returned if no value is set, or if steamIDLobby is invalid

public static GetLobbyData ( CSteamID steamIDLobby, string pchKey ) : string
steamIDLobby CSteamID
pchKey string
Résultat string
		public static string GetLobbyData(CSteamID steamIDLobby, string pchKey) {
			InteropHelp.TestIfAvailableClient();
			using (var pchKey2 = new InteropHelp.UTF8StringHandle(pchKey)) {
				return InteropHelp.PtrToStringUTF8(NativeMethods.ISteamMatchmaking_GetLobbyData(steamIDLobby, pchKey2));
			}
		}