Show / Hide Table of Contents

Class HostingOptions

Provides information about where a desktop is hosted.

Inheritance
object
HostingOptions
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 HostingOptions

Properties

ConnectAddress

Declaration
[Required(ErrorMessage = "ConnectAddress is required.")]
[JsonProperty(PropertyName = "connectAddress")]
public string ConnectAddress { get; set; }
Property Value
Type Description
string

The connection address of the desktop.

Remarks

Required

Image

Declaration
[Required(ErrorMessage = "Image is required.")]
[JsonProperty(PropertyName = "image")]
public DesktopImage Image { get; set; }
Property Value
Type Description
DesktopImage
Remarks

Required

In this article
Back to top