private static void OnServer(IntPtr thisptr, IntPtr pvParam)
        {
            Action <AssociateWithClanResult_t> action = AssociateWithClanResult_t.actionServer;

            if (action != null)
            {
                action(AssociateWithClanResult_t.Fill(pvParam));
            }
            else
            {
            }
        }
        public static async Task <AssociateWithClanResult_t?> GetResultAsync(SteamAPICall_t handle)
        {
            AssociateWithClanResult_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(AssociateWithClanResult_t.StructSize);
                try
                {
                    if (!(!SteamUtils.Internal.GetAPICallResult(handle, intPtr, AssociateWithClanResult_t.StructSize, 210, ref flag) | flag))
                    {
                        nullable = new AssociateWithClanResult_t?(AssociateWithClanResult_t.Fill(intPtr));
                    }
                    else
                    {
                        nullable = null;
                    }
                }
                finally
                {
                    Marshal.FreeHGlobal(intPtr);
                }
            }
            else
            {
                nullable = null;
            }
            return(nullable);
        }