/// <summary> /// /// </summary> /// <param name="options"></param> /// <returns></returns> public SteamAuthenticateUserResponse AuthenticateUser(SteamAuthenticateUserOptions options) { return(SteamAuthenticateUserResponse.ParseResponse(Raw.AuthenticateUser(options))); }
/// <summary> /// /// </summary> /// <param name="steamId"></param> /// <param name="sessionKey"></param> /// <param name="encryptedLoginKey"></param> /// <returns></returns> public SteamAuthenticateUserResponse AuthenticateUser(ulong steamId, byte[] sessionKey, byte[] encryptedLoginKey) { return(SteamAuthenticateUserResponse.ParseResponse(Raw.AuthenticateUser(steamId, sessionKey, encryptedLoginKey))); }