Show / Hide Table of Contents

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.

Extension Methods

ExtensionMethods.Return<T, TOut>(T, TOut)
ExtensionMethods.To<T>(Object)
ExtensionMethods.AsValid<T>(Object, String)
ExtensionMethodsForAttachedProperties.Get<TType, TValue>(TType, Property<TType, TValue>)
ExtensionMethodsForAttachedProperties.Set<TType, TValue>(TType, Property<TType, TValue>, TValue)
ExtensionMethodsForContentModel.Adapt<T>(IWriter<T>)
ExtensionMethodsForCoreSources.If<TParameter, TResult>(TResult, ISpecification<TParameter>)
ExtensionMethodsForCoreSources.Let<TSpecification, TInstance>(TInstance, ISpecification<TSpecification>, TInstance)
Back to top Generated by DocFX