DeepCreatedOrigin Constructors

Definition

Overloads

DeepCreatedOrigin()

Initializes a new instance of the DeepCreatedOrigin class.

DeepCreatedOrigin(String, String, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the DeepCreatedOrigin class.

DeepCreatedOrigin()

Initializes a new instance of the DeepCreatedOrigin class.

public DeepCreatedOrigin ();
Public Sub New ()

Applies to

DeepCreatedOrigin(String, String, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the DeepCreatedOrigin class.

public DeepCreatedOrigin (string name, string hostName, int? httpPort = default, int? httpsPort = default);
new Microsoft.Azure.Management.Cdn.Fluent.Models.DeepCreatedOrigin : string * string * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.Cdn.Fluent.Models.DeepCreatedOrigin
Public Sub New (name As String, hostName As String, Optional httpPort As Nullable(Of Integer) = Nothing, Optional httpsPort As Nullable(Of Integer) = Nothing)

Parameters

name
String

Origin name

hostName
String

The address of the origin. It can be a domain name, IPv4 address, or IPv6 address.

httpPort
Nullable<Int32>

The value of the HTTP port. Must be between 1 and 65535

httpsPort
Nullable<Int32>

The value of the HTTPS port. Must be between 1 and 65535

Applies to