Table of Contents

RemoveRoom

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

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

Parameters
Type Name Description
RoomData roomData

The room to remove.

Action<RequestResponse<string>> onRequestFinished

Callback that will be invoked when the request finished.

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

Remove 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 remove. Can be found in RoomData.UniqueId

string secret

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

Action<RequestResponse<string>> onRequestFinished

Callback that will be invoked when the request finished.