Interface IWMDataFormatter
Classes that read a specific format and convert it to a ElementValue instance
to support data binding must implement this interface.
Assembly: WMServer.dll
public interface IWMDataFormatter
Properties
Declaration
string OutputType { get; }
Property Value
Methods
Read the specified data object and convert it to an appropriate ElementValue.
Declaration
ElementValue Read(object data, string? outputType = null)
Parameters
Returns
Serialize the specified ElementValue instance to a
string using this formatter's syntax.
Declaration
string Write(ElementValue data)
Parameters
Returns