RendererTSource Class

Renderer class

The base abstract class for all renderers.

public abstract class Renderer<TSource> : Renderer
ParameterDescription
TSourceThe type of the source.

Methods

NameDescription
Dispose()Releases unmanaged and - optionally - managed resources.
Render(IDevice, TSource)Defines method for rendering TSource into specified IDevice.
Render(IDevice, params TSource[])Defines method for rendering multiple TSources into specific IDevice.
abstract Render(IDevice, CancellationToken, params TSource[])Defines a method for rendering multiple TSources into a specific IDevice, using a cancellation token to request cancellation of the operation.
Render(IDevice, int, params TSource[])Defines method for rendering multiple TSources into specific IDevice.
abstract Render(IDevice, TimeSpan, params TSource[])Defines method for rendering multiple TSources into specific IDevice.
Render(IDevice, TSource, int)Defines method for rendering TSource into specified IDevice.
Render(IDevice, TSource, TimeSpan)Defines method for rendering TSource into specified IDevice.

See Also