SDK
SDK C# v1.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

InfoAsync #

Returns information about Kuzzle: available API (base + extended), plugins, external services (Redis, Elasticsearch, ...), servers, etc.

Arguments #

Copied to clipboard!
async Task<JObject> InfoAsync()

Return #

Returns server information as a JObject.

Usage #

Copied to clipboard!
JObject info = await kuzzle.Server.InfoAsync();
Console.WriteLine("Kuzzle server informations: " +
  info.ToString(Formatting.None));