Show / Hide Table of Contents

Class DesktopConnection

Provides information about a connection to a desktop, including connect and disconnect time, and client properties.

Inheritance
object
DesktopConnection
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DesktopsService.Models
Assembly: OCI.DotNetSDK.Desktops.dll
Syntax
public class DesktopConnection

Properties

ClientPlatform

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
Type Description
DesktopAction

NextAction

Declaration
[JsonProperty(PropertyName = "nextAction")]
public DesktopAction NextAction { get; set; }
Property Value
Type Description
DesktopAction

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.

In this article
Back to top