Class ListObject
- Namespace
- Alis.Core.Aspect.Data.Json
- Assembly
- Alis.dll
Defines an object that handles list deserialization.
public abstract class ListObjectInheritance
Derived
Inherited Members
Properties
Context
Gets the current context.
public IDictionary<string, object> Context { get; set; }Property Value
List
Gets or sets the list object.
public virtual object List { get; set; }Property Value
Methods
Add(object, JsonOptions)
Adds a value to the list object.
public abstract void Add(object value, JsonOptions options = null)Parameters
valueobject-
The value.
optionsJsonOptions-
The options.
Clear()
Clears the list object.
public abstract void Clear()