Interface IJsonArray
Interface that is used for the custom implementation of JSON Array type to be used in NCache.
Assembly: Alachisoft.NCache.Runtime.dll
Syntax
public interface IJsonArray : ICollection<JsonValueBase>, IEnumerable<JsonValueBase>, IEnumerable
Properties
Name | Description |
---|---|
Item[Int32] | Indexer for the JSON array. |
Methods
Name | Description |
---|---|
Add(JsonValue) | Adds item to the JSON Array. |
Contains(JsonValue) | Checks if the item exists in the JSON array. |
Remove(JsonValue) | Removes item from the JSON Array. |