Renderer-1.Render

Render(IDevice, TSource)

Defines method for rendering !:TDocument into specified IDevice.

public void Render(IDevice device, TSource source)
ParameterTypeDescription
deviceIDeviceThe output device.
documentTSourceThe document.

See Also


Render(IDevice, TSource, TimeSpan)

Defines method for rendering !:TDocument into specified IDevice. The rendering will be performed once there are no any network operations for loading resources, active timers, animation tasks or specified timeout is elapsed.

public void Render(IDevice device, TSource source, TimeSpan timeout)
ParameterTypeDescription
deviceIDeviceThe output device.
documentTSourceThe document.
timeoutTimeSpanA TimeSpan that represents the number of milliseconds to wait, or a TimeSpan that represents -1 millisecond to wait indefinitely.

See Also


Render(IDevice, TSource, int)

Defines method for rendering !:TDocument into specified IDevice. The rendering will be performed once there are no any network operations for loading resources, active timers, animation tasks or specified timeout is elapsed.

public void Render(IDevice device, TSource source, int timeout)
ParameterTypeDescription
deviceIDeviceThe output device.
documentTSourceThe document.
timeoutInt32A number of milliseconds that represents the number of milliseconds to wait, or -1 millisecond to wait indefinitely.

See Also


Render(IDevice, params TSource[])

public void Render(IDevice device, params TSource[] sources)

See Also


Render(IDevice, int, params TSource[])

public void Render(IDevice device, int timeout, params TSource[] sources)

See Also


Render(IDevice, TimeSpan, params TSource[])

public abstract void Render(IDevice device, TimeSpan timeout, params TSource[] sources)

See Also


Render(IDevice, CancellationToken, params TSource[])

public abstract void Render(IDevice device, CancellationToken cancellationToken, 
    params TSource[] sources)

See Also