Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ObjectToonEncoder.cs
2{
6 public abstract class ObjectToonEncoder : MultiRowToonEncoder
7 {
11 public override bool EncodesAsObject(object Value) => true;
12
21 public abstract override bool CanFold(object Object, out string FoldedName, out object FoldedValue);
22 }
23}
Abstract base class for multi-row TOON encoders.
Abstract base class for object TOON encoders.
abstract override bool CanFold(object Object, out string FoldedName, out object FoldedValue)
Checks if an object can be folded to a shorter representation, and if so, returns the folded name and...
override bool EncodesAsObject(object Value)
If the encoder encodes a value as an object.