Share via


ContentSource Constructors

Definition

Overloads

ContentSource()

Initializes a new instance of the ContentSource class.

ContentSource(ContentHash, String, String, String)

Initializes a new instance of the ContentSource class.

ContentSource()

Initializes a new instance of the ContentSource class.

public ContentSource ();
Public Sub New ()

Applies to

ContentSource(ContentHash, String, String, String)

Initializes a new instance of the ContentSource class.

public ContentSource (Microsoft.Azure.Management.Automation.Models.ContentHash hash = default, string type = default, string value = default, string version = default);
new Microsoft.Azure.Management.Automation.Models.ContentSource : Microsoft.Azure.Management.Automation.Models.ContentHash * string * string * string -> Microsoft.Azure.Management.Automation.Models.ContentSource
Public Sub New (Optional hash As ContentHash = Nothing, Optional type As String = Nothing, Optional value As String = Nothing, Optional version As String = Nothing)

Parameters

hash
ContentHash

Gets or sets the hash.

type
String

Gets or sets the content source type. Possible values include: 'embeddedContent', 'uri'

value
String

Gets or sets the value of the content. This is based on the content source type.

version
String

Gets or sets the version of the content.

Applies to