Class
ReportServerConnectionInfo

Class for creating a connection string that will be used with a Report Server instance

Definition

Namespace:Telerik.ReportViewer.Common

Assembly:Telerik.ReportViewer.WinForms.dll

Syntax:

cs-api-definition
public class ReportServerConnectionInfo : RemoteConnectionInfo

Inheritance: objectReportEngineConnectionInfoBaseRemoteConnectionInfoReportServerConnectionInfo

Inherited Members RemoteConnectionInfo.UriRemoteConnectionInfo.TimeoutRemoteConnectionInfo.KeepClientAliveReportEngineConnectionInfoBase.ToString()ReportEngineConnectionInfoBase.ConnectionStringReportEngineConnectionInfoBase.Engine

Constructors

ReportServerConnectionInfo(string)

Class for creating a connection string to a Report Server instance

Declaration

cs-api-definition
public ReportServerConnectionInfo(string uri)

Parameters

uri

string

The URI to the Report Server instance

ReportServerConnectionInfo(string, bool)

Class for creating a connection string to a Report Server instance

Declaration

cs-api-definition
public ReportServerConnectionInfo(string uri, bool keepClientAlive)

Parameters

uri

string

The URI to the Report Server instance

keepClientAlive

bool

Determines if the client will be kept alive (will not be expired)

ReportServerConnectionInfo(string, int)

Class for creating a connection string to a Report Server instance

Declaration

cs-api-definition
public ReportServerConnectionInfo(string uri, int timeout)

Parameters

uri

string

The URI to the Report Server instance

timeout

int

The timeout for rendering a document measured in seconds

ReportServerConnectionInfo(string, int, bool)

Class for creating a connection string to a Report Server instance

Declaration

cs-api-definition
public ReportServerConnectionInfo(string uri, int timeout, bool keepClientAlive)

Parameters

uri

string

The URI to the Report Server instance

timeout

int

The timeout for rendering a document measured in seconds

keepClientAlive

bool

Determines if the client will be kept alive (will not be expired)

ReportServerConnectionInfo(string, string, string)

Class for creating a connection string to a Report Server instance

Declaration

cs-api-definition
public ReportServerConnectionInfo(string uri, string username, string password)

Parameters

uri

string

The URI to the Report Server instance

username

string

The username that will be used for connecting

password

string

The password that will be used for connecting

ReportServerConnectionInfo(string, string, string, bool)

Class for creating a connection string to a Report Server instance

Declaration

cs-api-definition
public ReportServerConnectionInfo(string uri, string username, string password, bool keepClientAlive)

Parameters

uri

string

The URI to the Report Server instance

username

string

The username that will be used for connecting

password

string

The password that will be used for connecting

keepClientAlive

bool

Determines if the client will be kept alive (will not be expired)

ReportServerConnectionInfo(string, string, string, int)

Class for creating a connection string to a Report Server instance

Declaration

cs-api-definition
public ReportServerConnectionInfo(string uri, string username, string password, int timeout)

Parameters

uri

string

The URI to the Report Server instance

username

string

The username that will be used for connecting

password

string

The password that will be used for connecting

timeout

int

The timeout for rendering a document measured in seconds

ReportServerConnectionInfo(string, string, string, int, bool)

Class for creating a connection string to a Report Server instance

Declaration

cs-api-definition
public ReportServerConnectionInfo(string uri, string username, string password, int timeout, bool keepClientAlive)

Parameters

uri

string

The URI to the Report Server instance

username

string

The username that will be used for connecting

password

string

The password that will be used for connecting

timeout

int

The timeout for rendering a document measured in seconds

keepClientAlive

bool

Determines if the client will be kept alive (will not be expired)

Properties

Password

Gets or sets the password

Declaration

cs-api-definition
public string Password { get; set; }

Property Value

string

Username

Gets or sets the username

Declaration

cs-api-definition
public string Username { get; set; }

Property Value

string