Interface IWriter<T>
Used during serialization to emit the provided instance (and its contents, if necessary) to the provided writer.
Namespace: ExtendedXmlSerializer.ContentModel
Assembly: ExtendedXmlSerializer.dll
Syntax
public interface IWriter<in T>
Type Parameters
T
The subject to emit. |
Methods
Write(IFormatWriter, T)
Emits the instance into the provided writer.
Declaration
void Write(IFormatWriter writer, T instance)
Parameters
IFormatWriter
writer
The writer that represents the destination. |
T
instance
The instance to emit. |