Table of Contents

UnlistRoom

Methods
public void UnlistRoom(RoomData roomData, Action<RequestResponse<string>> onRequestFinished)

Unlist an existing room that you have created in the coherence Cloud.

Parameters
Type Name Description
RoomData roomData

The room to unlist.

Action<RequestResponse<string>> onRequestFinished

Callback that will be invoked when the request finished.

[Obsolete("Use the RoomData overload instead.")]
public void UnlistRoom(ulong uniqueID, string secret, Action<RequestResponse<string>> onRequestFinished)

Unlist an existing room that you have created in the coherence Cloud.

Parameters
Type Name Description
ulong uniqueID

Unique ID of the room you wish to unlist. Can be found in RoomData.UniqueId

string secret

Token that will allow you to unlist the room. Can be found in RoomData.Secret

Action<RequestResponse<string>> onRequestFinished

Callback that will be invoked when the request finished.