Skip to main content

Content

Description

The data sent by the SDK is saved in the Content variable.
Content is a JsonData-type variable, and data can be searched using a simple method.

Example

// If the SDK sends data whose key is mykey and the value is hello world

string data = string.Empty;
if(Backend.HasKey("mykey") == true)
{
data = Backend.Content["mykey"].ToString();
}