Class ZoneService#

Inheritance Relationships#

Base Type#

Class Documentation#

class xbe.sdk.ZoneService : xbe.sdk.ServiceBase#

Public Functions

ZoneService ()#
Task<List<Zone>> FindAll (Dictionary<string, string> query = null)#

Retrieves a list of objects matching the specified search parameters.

Param query:

A map of property names to values to search for.

Return:

A task whose result is a list of objects matching the specified search parameters.

Task<Zone> FindById (string id)#

Retrieves an instance of Zone with the specified unique identifier.

Param id:

The id value which uniquely identifies the object.

Return:

A task whose result is the object with the specified identifier if found.

async Task<int> CountUsers (string id)#

Returns the count of users in a given zone.