Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ParameterValueRenderer.cs
1using System.Threading.Tasks;
3
5{
10 {
15 {
16 }
17
23 public abstract Grade Supports(object Value);
24
32 public virtual Task<string> ToString(object Value, string Language, MarkdownSettings Settings)
33 {
34 return Task.FromResult(Value?.ToString() ?? string.Empty);
35 }
36
41 public virtual bool IsMarkdownOutput => false;
42 }
43}
virtual Task< string > ToString(object Value, string Language, MarkdownSettings Settings)
Generates a Markdown string from the parameter value.
virtual bool IsMarkdownOutput
If the ToString(object, string, MarkdownSettings) method returns Markdown (true), or plain text (fals...
abstract Grade Supports(object Value)
How well a parameter value is supported.
Settings used for Markdown generation of human-readable text.
Grade
Grade enumeration
Definition: Grade.cs:7