SteamKit2 获取新交易报价的回调名称是什么?

SteamKit2 what is the name of callback to get new trade offer?

我在代码 "TradeProposedCallback" 和 "TradeResultCallbac" 中找到了,但是当我收到新报价时他们没有被调用。

"SteamNotifications.NotificationCallback" 在我收到新报价时以及在收到新评论、消息等时给我打电话。 最后,它出现得太频繁了,我从 steam "Access Denied You don't have permission to access "http://store.steampowered.com/" on this server. Reference" 我该如何解决这个问题?没有以延迟的形式制作拐杖。

我的解决方案

   if (callback.Notifications.Count > 0 && callback.Notifications[0].UserNotificationType == SteamBot.SteamNotifications.NotificationCallback.UserNotificationType.TradeOffer)
                    {
                        Console.WriteLine("TradeOffer");
                     }