ShowGroupChatRoom
AndroidiOS
If you were looking for the method for use with Unreal Engine, see ShowGroupChatRoom for Unreal Engine SDK.
If you were looking for the method for use with Unreal Engine, see ShowGroupChatRoom for Unreal Engine SDK.
Open the guild chatroom page.
Function definition
public static void ShowGroupChatRoom(INTLGroupReqInfo info, string channel = "");
Input parameters
Parameter | Type | Description |
---|---|---|
info | INTLGroupReqInfo | Guild information of the specified chatroom For more information, see INTLGroupReqInfo. |
channel | string | The specified channel to open the chatroom |
Observers
The callback processing interface is GroupBaseResultObserver. The callback data structure is BaseResult.
The callback methodID is INTL_GROUP_SHOW_ROOM
.
Code sample
INTLGroupReqInfo reqInfo = new INTLGroupReqInfo();
reqInfo.worldID = "1";
reqInfo.guildID = "1";
INTLAPI.ShowGroupChatRoom(reqInfo, INTLChannel.Kakao);