Exemplo n.º 1
0
        private async Task ReceiveLogOff(CMsgClientLoggedOff loggedOff)
        {
            await NetLog.InfoAsync($"Logged off: {(Result)loggedOff.eresult} ({loggedOff.eresult})").ConfigureAwait(false);

            await LoggedOff.InvokeAsync(this, new LogOffEventArgs((Result)loggedOff.eresult));

            _gracefulLogoff = true;
        }
Exemplo n.º 2
0
            internal LoggedOffCallback(CMsgClientLoggedOff resp)
#endif
            {
                this.Result = ( EResult )resp.eresult;
            }
Exemplo n.º 3
0
 internal LoggedOffCallback(SteamClient client, CMsgClientLoggedOff resp)
     : base(client)