Ejemplo n.º 1
0
 public WhoisCompleteEventArgs(Core.WhoisType Type, HoNUserInfoInGameArgs InGameArgs, HoNUserInfoNoExistArgs NoExistArgs, HoNUserInfoOfflineArgs OfflineArgs, HoNUserInfoOnlineArgs OnlineArgs)
 {
     this._type = Type;
     this._ingameargs = InGameArgs;
     this._noexistargs = NoExistArgs;
     this._offlineargs = OfflineArgs;
     this._onlineargs = OnlineArgs;
 }
Ejemplo n.º 2
0
 void hon_onUserInfoInGame(object sender, HoNUserInfoInGameArgs e)
 {
     WhoisType Type = WhoisType.USER_INFO_INGAME;
     if (onWhoisComplete != null) onWhoisComplete(this, new WhoisCompleteEventArgs(Type, e, null, null, null));
 }