지원 / Support
home
디스코드 / Discord
home

Acquiring User Information

Call the StovePC.GetUser method to acquire the information of a logged in user.
Enter the code piece below in the ButtonGetUser_Click method.
sdkResult = StovePC.GetUser();
Plain Text
복사
To get the logged-in user information, call the GetUser method. Write the code snippet below in the OnUser method.
sb.AppendLine("OnUser"); sb.AppendFormat(" - user.MemberNo : {0}" + Environment.NewLine, user.MemberNo.ToString()); sb.AppendFormat(" - user.Nickname : {0}" + Environment.NewLine, user.Nickname); sb.AppendFormat(" - user.GameUserId : {0}", user.GameUserId);
Plain Text
복사