Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IParameterValueRenderer.cs
1using System.Threading.Tasks;
3
5{
9 public interface IParameterValueRenderer : IProcessingSupport<object>
10 {
18 Task<string> ToString(object Value, string Language, MarkdownSettings Settings);
19
24 bool IsMarkdownOutput { get; }
25 }
26}
Settings used for Markdown generation of human-readable text.
bool IsMarkdownOutput
If the ToString(object, string, MarkdownSettings) method returns Markdown (true), or plain text (fals...
Task< string > ToString(object Value, string Language, MarkdownSettings Settings)
Generates a Markdown string from the parameter value.
Interface for detecting interfaces supporting objects with predefined features.