ApplicationStack Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ApplicationStack() |
Initializes a new instance of the ApplicationStack class. |
ApplicationStack(String, String, String, IList<StackMajorVersion>, IList<ApplicationStack>) |
Initializes a new instance of the ApplicationStack class. |
ApplicationStack()
Initializes a new instance of the ApplicationStack class.
public ApplicationStack ();
Public Sub New ()
Applies to
ApplicationStack(String, String, String, IList<StackMajorVersion>, IList<ApplicationStack>)
Initializes a new instance of the ApplicationStack class.
public ApplicationStack (string name = default, string display = default, string dependency = default, System.Collections.Generic.IList<Microsoft.Azure.Management.AppService.Fluent.Models.StackMajorVersion> majorVersions = default, System.Collections.Generic.IList<Microsoft.Azure.Management.AppService.Fluent.Models.ApplicationStack> frameworks = default);
new Microsoft.Azure.Management.AppService.Fluent.Models.ApplicationStack : string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.AppService.Fluent.Models.StackMajorVersion> * System.Collections.Generic.IList<Microsoft.Azure.Management.AppService.Fluent.Models.ApplicationStack> -> Microsoft.Azure.Management.AppService.Fluent.Models.ApplicationStack
Public Sub New (Optional name As String = Nothing, Optional display As String = Nothing, Optional dependency As String = Nothing, Optional majorVersions As IList(Of StackMajorVersion) = Nothing, Optional frameworks As IList(Of ApplicationStack) = Nothing)
Parameters
- name
- String
Application stack name.
- display
- String
Application stack display name.
- dependency
- String
Application stack dependency.
- majorVersions
- IList<StackMajorVersion>
List of major versions available.
- frameworks
- IList<ApplicationStack>
List of frameworks associated with application stack.
Applies to
Azure SDK for .NET