ReportObject.UpgradeRDL Method

Definition

Upgrades the report definition language of the report object.

Overloads

UpgradeRDL(Stream, Boolean)

Upgrades the report definition language of the report object.

UpgradeRDL(XmlReader, String, Boolean, Boolean)

Upgrades the report definition language of the report object.

UpgradeRDL(Stream, Boolean)

Upgrades the report definition language of the report object.

public:
 static System::IO::Stream ^ UpgradeRDL(System::IO::Stream ^ stream, bool throwUpgradeException);
public static System.IO.Stream UpgradeRDL (System.IO.Stream stream, bool throwUpgradeException);
static member UpgradeRDL : System.IO.Stream * bool -> System.IO.Stream
Public Shared Function UpgradeRDL (stream As Stream, throwUpgradeException As Boolean) As Stream

Parameters

stream
Stream

The stream that contains the RDL.

throwUpgradeException
Boolean

Whether to throw exceptions on errors.

Returns

A Stream object.

Applies to

UpgradeRDL(XmlReader, String, Boolean, Boolean)

Upgrades the report definition language of the report object.

public:
 static System::IO::Stream ^ UpgradeRDL(System::Xml::XmlReader ^ rdlReader, System::String ^ namespaceURI, bool throwUpgradeException, bool upgradeDundasCRIToNative);
public static System.IO.Stream UpgradeRDL (System.Xml.XmlReader rdlReader, string namespaceURI, bool throwUpgradeException, bool upgradeDundasCRIToNative);
static member UpgradeRDL : System.Xml.XmlReader * string * bool * bool -> System.IO.Stream
Public Shared Function UpgradeRDL (rdlReader As XmlReader, namespaceURI As String, throwUpgradeException As Boolean, upgradeDundasCRIToNative As Boolean) As Stream

Parameters

rdlReader
XmlReader

The reader for the RDL stream.

namespaceURI
String

The namespace URI for the reader.

throwUpgradeException
Boolean

Whether to throw exceptions on errors.

upgradeDundasCRIToNative
Boolean

Whether to upgrade Dundas custom report items to native RDL elements.

Returns

A Stream object.

Applies to