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
[Obsolete("This API is deprecated and will be removed in a future release. This feature is being retired and will not be continued in future versions.", false)]
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. |