Class DesktopConnection
Provides information about a connection to a desktop, including connect and disconnect time, and client properties.
Inheritance
DesktopConnection
Assembly: OCI.DotNetSDK.Desktops.dll
Syntax
public class DesktopConnection
Properties
Declaration
[JsonProperty(PropertyName = "clientPlatform")]
public string ClientPlatform { get; set; }
Property Value
| Type |
Description |
| string |
The platform on which the Secure Desktops client runs.
|
ClientType
Declaration
[JsonProperty(PropertyName = "clientType")]
public string ClientType { get; set; }
Property Value
| Type |
Description |
| string |
The type of Secure Desktops client connected to a desktop.
|
ClientVersion
Declaration
[JsonProperty(PropertyName = "clientVersion")]
public string ClientVersion { get; set; }
Property Value
| Type |
Description |
| string |
The version of the Secure Desktops client connected to a desktop, applicable only to the installed client type.
|
LastAction
Declaration
[JsonProperty(PropertyName = "lastAction")]
public DesktopAction LastAction { get; set; }
Property Value
NextAction
Declaration
[JsonProperty(PropertyName = "nextAction")]
public DesktopAction NextAction { get; set; }
Property Value
TimeConnected
Declaration
[JsonProperty(PropertyName = "timeConnected")]
public DateTime? TimeConnected { get; set; }
Property Value
| Type |
Description |
| DateTime? |
The time when the last connection to a desktop started.
|
TimeDisconnected
Declaration
[JsonProperty(PropertyName = "timeDisconnected")]
public DateTime? TimeDisconnected { get; set; }
Property Value
| Type |
Description |
| DateTime? |
The time when the last connection to a desktop ended.
|