vx_evt_user_app_data
Reference the Vivox Core SDK API.
Read time 1 minuteLast updated 7 months ago
Raised when a message from another user is received. More...
#include <VxcEvents.h>Public Attributes
Name | |
|---|---|
| vx_evt_base_t | base The common properties for all events. |
| VX_HANDLE | account_handle The handle returned from a successful account login request. |
| char * | from_uri The URI of the account sending the message. |
| char * | content_type The type of the incoming data. |
| char * | content The content of the message being received from the specified account. |
Detailed Description
struct vx_evt_user_app_data;
Raised when a message from another user is received.
Note: This is not to be confused with IMs - this is a P2P communication mechanism for applications to communicate custom content.
Public Attributes Documentation
variable base
vx_evt_base_t base;
The common properties for all events.
variable account_handle
VX_HANDLE account_handle;
The handle returned from a successful account login request.
See: vx_req_account_login
variable from_uri
char * from_uri;
The URI of the account sending the message.
variable content_type
char * content_type;
The type of the incoming data.
variable content
char * content;
The content of the message being received from the specified account.