private static void OnClient(IntPtr thisptr, IntPtr pvParam)
        {
            Action <GameConnectedChatJoin_t> action = GameConnectedChatJoin_t.actionClient;

            if (action != null)
            {
                action(GameConnectedChatJoin_t.Fill(pvParam));
            }
            else
            {
            }
        }
        public static async Task <GameConnectedChatJoin_t?> GetResultAsync(SteamAPICall_t handle)
        {
            GameConnectedChatJoin_t?nullable;
            bool flag = false;

            while (!SteamUtils.IsCallComplete(handle, out flag))
            {
                await Task.Delay(1);

                if ((SteamClient.IsValid ? false : !SteamServer.IsValid))
                {
                    nullable = null;
                    return(nullable);
                }
            }
            if (!flag)
            {
                IntPtr intPtr = Marshal.AllocHGlobal(GameConnectedChatJoin_t.StructSize);
                try
                {
                    if (!(!SteamUtils.Internal.GetAPICallResult(handle, intPtr, GameConnectedChatJoin_t.StructSize, 339, ref flag) | flag))
                    {
                        nullable = new GameConnectedChatJoin_t?(GameConnectedChatJoin_t.Fill(intPtr));
                    }
                    else
                    {
                        nullable = null;
                    }
                }
                finally
                {
                    Marshal.FreeHGlobal(intPtr);
                }
            }
            else
            {
                nullable = null;
            }
            return(nullable);
        }