This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.
Gets a value indicating whether this instance is actually streaming.

Namespace: Smartsite.Runtime.Modules
Assembly:  Smartsite.Runtime.Modules (in Smartsite.Runtime.Modules.dll)

Syntax

C#Copy imageCopy Code
protected bool IsStreaming { get; }
Visual Basic (Declaration)Copy imageCopy Code
Protected ReadOnly Property IsStreaming As 
	Get

Field Value

true if this instance is streaming; otherwise, false.

Remarks

Internal rendering *never* enables streaming. Example: se:image uses internal rendering to render an image in order to determine the actual size of the image. The internal rendering uses a binary template to output the image data. When streaming is enabled, the binary macro will take over the entire rendering (including the main render) by throwing the StopRenderException. As a work-around, streaming mode is disabled when the current render operation is internal. WorkItem 4551 is created and describes the entire issue and provides directions for a real solution.

See Also

Advanced