StackMinorVersion 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
StackMinorVersion() |
Initializes a new instance of the StackMinorVersion class. |
StackMinorVersion(String, String, Nullable<Boolean>, Nullable<Boolean>) |
Initializes a new instance of the StackMinorVersion class. |
StackMinorVersion()
Initializes a new instance of the StackMinorVersion class.
public StackMinorVersion ();
Public Sub New ()
Applies to
StackMinorVersion(String, String, Nullable<Boolean>, Nullable<Boolean>)
Initializes a new instance of the StackMinorVersion class.
public StackMinorVersion (string displayVersion = default, string runtimeVersion = default, bool? isDefault = default, bool? isRemoteDebuggingEnabled = default);
new Microsoft.Azure.Management.WebSites.Models.StackMinorVersion : string * string * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Management.WebSites.Models.StackMinorVersion
Public Sub New (Optional displayVersion As String = Nothing, Optional runtimeVersion As String = Nothing, Optional isDefault As Nullable(Of Boolean) = Nothing, Optional isRemoteDebuggingEnabled As Nullable(Of Boolean) = Nothing)
Parameters
- displayVersion
- String
Application stack minor version (display only).
- runtimeVersion
- String
Application stack minor version (runtime only).
<code>true</code> if this is the default minor version; otherwise, <code>false</code>.
<code>true</code> if this supports Remote Debugging, otherwise <code>false</code>.
Applies to
Azure SDK for .NET