ApplicationDescription Constructors

Definition

Overloads

ApplicationDescription()

Instantiates an instance of ApplicationDescription class.

ApplicationDescription(Uri, String, String)

Instantiates an instance of ApplicationDescription with the application instance name, the application type name, and the application type version.

ApplicationDescription(Uri, String, String, NameValueCollection)

Instantiates an instance of ApplicationDescription with the application instance name, the application type name, the application type version, and the collection of application parameters.

ApplicationDescription(Uri, String, String, NameValueCollection, ManagedApplicationIdentityDescription)

Instantiates an instance of ApplicationDescription with the application instance name, the application type name, the application type version, and the collection of application parameters.

ApplicationDescription()

Instantiates an instance of ApplicationDescription class.

public ApplicationDescription ();
Public Sub New ()

Applies to

ApplicationDescription(Uri, String, String)

Instantiates an instance of ApplicationDescription with the application instance name, the application type name, and the application type version.

public ApplicationDescription (Uri applicationName, string applicationTypeName, string applicationTypeVersion);
new System.Fabric.Description.ApplicationDescription : Uri * string * string -> System.Fabric.Description.ApplicationDescription
Public Sub New (applicationName As Uri, applicationTypeName As String, applicationTypeVersion As String)

Parameters

applicationName
Uri

URI of the application instance name.

applicationTypeName
String

Name of the application type.

applicationTypeVersion
String

Version of the application type.

Applies to

ApplicationDescription(Uri, String, String, NameValueCollection)

Instantiates an instance of ApplicationDescription with the application instance name, the application type name, the application type version, and the collection of application parameters.

public ApplicationDescription (Uri applicationName, string applicationTypeName, string applicationTypeVersion, System.Collections.Specialized.NameValueCollection applicationParameters);
new System.Fabric.Description.ApplicationDescription : Uri * string * string * System.Collections.Specialized.NameValueCollection -> System.Fabric.Description.ApplicationDescription
Public Sub New (applicationName As Uri, applicationTypeName As String, applicationTypeVersion As String, applicationParameters As NameValueCollection)

Parameters

applicationName
Uri

URI of the application instance name.

applicationTypeName
String

Name of the application type.

applicationTypeVersion
String

Version of the application type.

applicationParameters
NameValueCollection

Collection of name-value pairs for the parameters that are specified in the ApplicationManifest.xml.

Applies to

ApplicationDescription(Uri, String, String, NameValueCollection, ManagedApplicationIdentityDescription)

Instantiates an instance of ApplicationDescription with the application instance name, the application type name, the application type version, and the collection of application parameters.

public ApplicationDescription (Uri applicationName, string applicationTypeName, string applicationTypeVersion, System.Collections.Specialized.NameValueCollection applicationParameters, System.Fabric.Description.ManagedApplicationIdentityDescription managedApplicationIdentity);
new System.Fabric.Description.ApplicationDescription : Uri * string * string * System.Collections.Specialized.NameValueCollection * System.Fabric.Description.ManagedApplicationIdentityDescription -> System.Fabric.Description.ApplicationDescription
Public Sub New (applicationName As Uri, applicationTypeName As String, applicationTypeVersion As String, applicationParameters As NameValueCollection, managedApplicationIdentity As ManagedApplicationIdentityDescription)

Parameters

applicationName
Uri

URI of the application instance name.

applicationTypeName
String

Name of the application type.

applicationTypeVersion
String

Version of the application type.

applicationParameters
NameValueCollection

Collection of name-value pairs for the parameters that are specified in the ApplicationManifest.xml.

managedApplicationIdentity
ManagedApplicationIdentityDescription

Managed application identity description.

Applies to