Interface IDataConnection
Represents a connection to a data source.
Namespace: Cuemon.Data
Assembly: Cuemon.Data.dll
Syntax
public interface IDataConnection
Properties
| Improve this DocAddress
Gets or sets the server address of the connection.
Declaration
string Address { get; set; }
Property Value
Type | Description |
---|---|
System.String | The server address of the connection. |
NetworkLibrary
Gets or sets the network library of the connection.
Declaration
string NetworkLibrary { get; set; }
Property Value
Type | Description |
---|---|
System.String | The network library of the connection. |
Password
Gets or sets the password of the connection.
Declaration
string Password { get; set; }
Property Value
Type | Description |
---|---|
System.String | The password of the connection. |
Timeout
Gets or sets the time to wait while trying to establish a connection before terminating the attempt and generating an error.
Declaration
TimeSpan Timeout { get; set; }
Property Value
Type | Description |
---|---|
System.TimeSpan | The timespan to wait for a connection to open. The default value is 10 seconds. |
UserId
Gets or sets the user id of the connection.
Declaration
string UserId { get; set; }
Property Value
Type | Description |
---|---|
System.String | The user id of the connection. |