次の方法で共有


Report.Load メソッド

定義

Report オブジェクトをレポート定義から読み込みます。

オーバーロード

Load(String)

Report オブジェクトをレポート定義から読み込みます。

Load(Stream)

Report オブジェクトをレポート定義から読み込みます。

Load(Byte[])

Report オブジェクトをレポート定義から読み込みます。

Load(String)

Report オブジェクトをレポート定義から読み込みます。

public:
 static Microsoft::ReportingServices::RdlObjectModel::Report ^ Load(System::String ^ path);
public static Microsoft.ReportingServices.RdlObjectModel.Report Load (string path);
static member Load : string -> Microsoft.ReportingServices.RdlObjectModel.Report
Public Shared Function Load (path As String) As Report

パラメーター

path
String

レポート定義ファイルの絶対パス。

戻り値

読み込んだ Report オブジェクトです。

適用対象

Load(Stream)

Report オブジェクトをレポート定義から読み込みます。

public:
 static Microsoft::ReportingServices::RdlObjectModel::Report ^ Load(System::IO::Stream ^ stream);
public static Microsoft.ReportingServices.RdlObjectModel.Report Load (System.IO.Stream stream);
static member Load : System.IO.Stream -> Microsoft.ReportingServices.RdlObjectModel.Report
Public Shared Function Load (stream As Stream) As Report

パラメーター

stream
Stream

レポート定義を含んだストリーム。

戻り値

読み込んだ Report オブジェクトです。

適用対象

Load(Byte[])

Report オブジェクトをレポート定義から読み込みます。

public:
 static Microsoft::ReportingServices::RdlObjectModel::Report ^ Load(cli::array <System::Byte> ^ bytes);
public static Microsoft.ReportingServices.RdlObjectModel.Report Load (byte[] bytes);
static member Load : byte[] -> Microsoft.ReportingServices.RdlObjectModel.Report
Public Shared Function Load (bytes As Byte()) As Report

パラメーター

bytes
Byte[]

レポート定義データ。

戻り値

読み込んだ Report オブジェクトです。

適用対象