지원 프로그램
home
슬기로운 데모생활
home

Acquiring User Information

생성일
2024/03/14 00:23
태그
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
복사