Indicates whether the snapshot associated with the execution needs to be created or reprocessed.

Namespace:  PerpetuumSoft.ReportingServices.Viewer.Server
Assembly:  PerpetuumSoft.ReportingServices.Viewer.Server (in PerpetuumSoft.ReportingServices.Viewer.Server.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public bool NeedProcessing { get; set; }
Visual Basic (Declaration)
Public Property NeedProcessing As Boolean
Visual C++
public:
property bool NeedProcessing {
	bool get ();
	void set (bool value);
}

Remarks

This is true when:
  • Render has been called for a report.
  • When any parameter values for a report have been changed.
  • If a new set of credentials have been set.
  • If ResetExecution is called on a live or ad-hoc snapshot.
  • When this property is true, the next call to the Render method will cause the snapshot to be created or reprocessed.
  • See Also