Example #1
0
        private static void OnClient(IntPtr thisptr, IntPtr pvParam)
        {
            Action <CreateBeaconCallback_t> action = CreateBeaconCallback_t.actionClient;

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