internal async Task <AssociateWithClanResult_t?> AssociateWithClan(SteamId steamIDClan)
 {
     return(await AssociateWithClanResult_t.GetResultAsync(_AssociateWithClan( Self, steamIDClan )));
 }
        internal async Task <AssociateWithClanResult_t?> AssociateWithClan(SteamId steamIDClan)
        {
            var returnValue = _AssociateWithClan(Self, steamIDClan);

            return(await AssociateWithClanResult_t.GetResultAsync(returnValue));
        }
예제 #3
0
        internal async Task <AssociateWithClanResult_t?> AssociateWithClan(SteamId steamIDClan)
        {
            AssociateWithClanResult_t?resultAsync = await AssociateWithClanResult_t.GetResultAsync(this._AssociateWithClan(this.Self, steamIDClan));

            return(resultAsync);
        }