Table of Contents

Class ListObject

Namespace
Alis.Core.Aspect.Data.Json
Assembly
Alis.dll

Defines an object that handles list deserialization.

public abstract class ListObject

Inheritance

Derived

Inherited Members

Properties

Context

Gets the current context.

public IDictionary<string, object> Context { get; set; }

Property Value

IDictionary<string, object>

List

Gets or sets the list object.

public virtual object List { get; set; }

Property Value

object

Methods

Add(object, JsonOptions)

Adds a value to the list object.

public abstract void Add(object value, JsonOptions options = null)

Parameters

value object

The value.

options JsonOptions

The options.

Clear()

Clears the list object.

public abstract void Clear()