.net namespace for real-time messaging

Hello there,

I’m trying to implement .net messaging in Unity, but it is reporting a missing namespace declaration. I can’t see what I might be missing from the documentation, but was hoping you could help.

"The type or namespace name 'IChannel' could not be found (are you missing a using directive or an assembly reference?)'

I am currently only using

using BackendlessAPI;
using BackendlessAPI.Async;

Many thanks!

-Iain

Hello @Iain_simons!
You need to add the following line:
using BackendlessAPI.RT.Messaging;

Regards, Nikita.

ah, many thanks!

Is that anywhere in the documentation? I couldn’t see it, but would be worth adding :slight_smile:

@Iain_simons, unfortunately there are no namespaces in the documentation, we will honor your comment, thanks!

1 Like