UnblockUser
public void UnblockUser(string NickName);
Parameter
Value | Type | Description |
---|---|---|
NickName | string | Nickname of the unblocked user |
Description
The blocked user is removed from the block list.
This method is provided only in a synchronous form.
Example
string isUnblock = Backend.Chat.UnblockUser("Nickname");
if(isUnblock)
Debug.Log("Successfully unblocked.");
else
Debug.Log("The user does not exist in the block list.");
Return casess
returnValue(bool) | Description |
---|---|
true | When unblocked |
false | When the corresponding nickname does not exist |