internal async Task <LobbyCreated_t?> CreateLobby(LobbyType eLobbyType, int cMaxMembers)
 {
     return(await LobbyCreated_t.GetResultAsync(_CreateLobby( Self, eLobbyType, cMaxMembers )));
 }
        internal async Task <LobbyCreated_t?> CreateLobby(LobbyType eLobbyType, int cMaxMembers)
        {
            var returnValue = _CreateLobby(Self, eLobbyType, cMaxMembers);

            return(await LobbyCreated_t.GetResultAsync(returnValue));
        }
Example #3
0
        internal async Task <LobbyCreated_t?> CreateLobby(LobbyType eLobbyType, int cMaxMembers)
        {
            LobbyCreated_t?resultAsync = await LobbyCreated_t.GetResultAsync(this._CreateLobby(this.Self, eLobbyType, cMaxMembers));

            return(resultAsync);
        }