Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IJsonEncoder.cs
1using System;
2using System.Text;
4
6{
10 public interface IJsonEncoder : IProcessingSupport<Type>
11 {
18 void Encode(object Object, int? Indent, StringBuilder Json);
19 }
20}
Interface for encoding objects of certain types to JSON.
Definition: IJsonEncoder.cs:11
void Encode(object Object, int? Indent, StringBuilder Json)
Encodes the Object to JSON.
Interface for detecting interfaces supporting objects with predefined features.