Skip to main content

GetBlockUserList

public LitJson.JsonDataGetBlockUserList();

Description

The block list is looked up.

This method is provided only in a synchronous form.

Example

LitJson.JsonData blockList = Backend.Chat.GetBlockUserList();

for(int i=0; blockList.Count; i++)
{
Debug.Log("Nickname : "+blockList[i].ToString());
//Nickname : a1
//Nickname : a2
//Nickname : b1
}

Return casess

When the lookup is successful returnValue : refer to JSON

When the blocked user list is empty returnValue : [ ]

Json

["nickname1","nickname2","nickname3","nickname4"]