Namespace: clients

diffusion. clients

Members

<static, readonly> PropertyKeys

Enum containing standard session property keys
Properties:
Name Type Default Description
ALL_FIXED_PROPERTIES ["*F"] This constant can be used instead of a property key in requests for session property values to indicate that all fixed session properties are required.
ALL_USER_PROPERTIES ["*U"] This constant can be used instead of a property key in requests for session property values to indicate that all user defined session properties are required.
ALL_PROPERTIES ["*F","*U"] This constant can be used instead of a property key in requests for session property values to indicate that all session properties are required.
Examples
// Get the ALL_FIXED_PROPERTIES key
var props = diffusion.clients.PropertyKeys.ALL_FIXED_PROPERTIES;
// Get all user and fixed properties
var props = diffusion.clients.PropertyKeys.ALL_FIXED_PROPERTIES
     .concat(diffusion.clients.PropertyKeys.ALL_USER_PROPERTIES);