Share via


ApplicationSummary Constructors

Definition

Overloads

ApplicationSummary()

Initializes a new instance of the ApplicationSummary class.

ApplicationSummary(String, String, IList<String>)

Initializes a new instance of the ApplicationSummary class.

ApplicationSummary()

Source:
ApplicationSummary.cs

Initializes a new instance of the ApplicationSummary class.

public ApplicationSummary ();
Public Sub New ()

Applies to

ApplicationSummary(String, String, IList<String>)

Source:
ApplicationSummary.cs

Initializes a new instance of the ApplicationSummary class.

public ApplicationSummary (string id, string displayName, System.Collections.Generic.IList<string> versions);
new Microsoft.Azure.Batch.Protocol.Models.ApplicationSummary : string * string * System.Collections.Generic.IList<string> -> Microsoft.Azure.Batch.Protocol.Models.ApplicationSummary
Public Sub New (id As String, displayName As String, versions As IList(Of String))

Parameters

id
String

A string that uniquely identifies the application within the Account.

displayName
String

The display name for the application.

versions
IList<String>

The list of available versions of the application.

Applies to