Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IContentConverter.cs
2using System.Threading.Tasks;
3
4namespace Waher.Content
5{
10 public interface IContentConverter
11 {
16 {
17 get;
18 }
19
25 {
26 get;
27 }
28
33 {
34 get;
35 }
36
42 Task<bool> ConvertAsync(ConversionState State);
43 }
44}
Contains the state of a content conversion process.
Basic interface for Internet Content encoders. A class implementing this interface and having a defau...
Grade ConversionGrade
How well the content is converted.
string[] FromContentTypes
Converts content from these content types.
Task< bool > ConvertAsync(ConversionState State)
Performs the actual conversion.
string[] ToContentTypes
Converts content to these content types. Return an array of "*" to signify content can be converted t...
Grade
Grade enumeration
Definition: Grade.cs:7