New to Telerik ReportingStart a free 30-day trial

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:

C#
public class ReportServerConnectionInfo : RemoteConnectionInfo

Inheritance: objectReportEngineConnectionInfoBaseRemoteConnectionInfoReportServerConnectionInfo

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

Constructors

Class for creating a connection string to a Report Server instance

C#
public ReportServerConnectionInfo(string uri, bool keepClientAlive)
Parameters:uristring

The URI to the Report Server instance

keepClientAlivebool

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

Class for creating a connection string to a Report Server instance

C#
public ReportServerConnectionInfo(string uri, int timeout, bool keepClientAlive)
Parameters:uristring

The URI to the Report Server instance

timeoutint

The timeout for rendering a document measured in seconds

keepClientAlivebool

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

Class for creating a connection string to a Report Server instance

C#
public ReportServerConnectionInfo(string uri, int timeout)
Parameters:uristring

The URI to the Report Server instance

timeoutint

The timeout for rendering a document measured in seconds

Class for creating a connection string to a Report Server instance

C#
public ReportServerConnectionInfo(string uri, string username, string password, bool keepClientAlive)
Parameters:uristring

The URI to the Report Server instance

usernamestring

The username that will be used for connecting

passwordstring

The password that will be used for connecting

keepClientAlivebool

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

Class for creating a connection string to a Report Server instance

C#
public ReportServerConnectionInfo(string uri, string username, string password, int timeout, bool keepClientAlive)
Parameters:uristring

The URI to the Report Server instance

usernamestring

The username that will be used for connecting

passwordstring

The password that will be used for connecting

timeoutint

The timeout for rendering a document measured in seconds

keepClientAlivebool

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

Class for creating a connection string to a Report Server instance

C#
public ReportServerConnectionInfo(string uri, string username, string password, int timeout)
Parameters:uristring

The URI to the Report Server instance

usernamestring

The username that will be used for connecting

passwordstring

The password that will be used for connecting

timeoutint

The timeout for rendering a document measured in seconds

Class for creating a connection string to a Report Server instance

C#
public ReportServerConnectionInfo(string uri, string username, string password)
Parameters:uristring

The URI to the Report Server instance

usernamestring

The username that will be used for connecting

passwordstring

The password that will be used for connecting

Class for creating a connection string to a Report Server instance

C#
public ReportServerConnectionInfo(string uri)
Parameters:uristring

The URI to the Report Server instance

Properties

Password

string

Gets or sets the password

C#
public string Password { get; set; }

Username

string

Gets or sets the username

C#
public string Username { get; set; }