Class CommonConnectionParams
Main connection parameters for the IoT data driver to access the API
Inheritance
System.Object
CommonConnectionParams
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: VEDriversLite.Devices.Dto
Assembly: VEDriversLite.dll
Syntax
public class CommonConnectionParams
Properties
| Improve this Doc View SourceCommonRefreshInterval
Common data refresh interval in miliseconds Default value is 10s = 10000ms This is usually used for request type of the communication
Declaration
public int CommonRefreshInterval { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
DeviceId
Device Id of the device
Declaration
public string DeviceId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Encrypted
Is communication encrypted
Declaration
public bool Encrypted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
GroupId
Group Id of the device
Declaration
public string GroupId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IP
IP for connection
Declaration
public string IP { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Password
Password name for the case of secured connection
Declaration
public string Password { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Port
PORT for connection
Declaration
public int Port { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Secured
is commection secured
Declaration
public bool Secured { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
SType
Type of security type like: SSL, Bearer, etc.
Declaration
public CommunitacionSecurityType SType { get; set; }
Property Value
Type | Description |
---|---|
CommunitacionSecurityType |
Token
Token for the case of secured connection
Declaration
public string Token { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Url
URL for connection
Declaration
public string Url { get; set; }
Property Value
Type | Description |
---|---|
System.String |
UserId
User Id of the owner of the device
Declaration
public string UserId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Username
User name for the case of secured connection
Declaration
public string Username { get; set; }
Property Value
Type | Description |
---|---|
System.String |