共用方式為


Solution 建構函式

定義

多載

Solution()

初始化 Solution 類別的新實例。

Solution(Nullable<Double>, String, Nullable<Double>, String, Nullable<SolutionType>, IList<IList<NameValuePair>>, IList<IList<NameValuePair>>)

初始化 Solution 類別的新實例。

Solution()

初始化 Solution 類別的新實例。

public Solution();
Public Sub New ()

適用於

Solution(Nullable<Double>, String, Nullable<Double>, String, Nullable<SolutionType>, IList<IList<NameValuePair>>, IList<IList<NameValuePair>>)

初始化 Solution 類別的新實例。

public Solution(double? id = default, string displayName = default, double? order = default, string description = default, Microsoft.Azure.Management.AppService.Fluent.Models.SolutionType? type = default, System.Collections.Generic.IList<System.Collections.Generic.IList<Microsoft.Azure.Management.AppService.Fluent.Models.NameValuePair>> data = default, System.Collections.Generic.IList<System.Collections.Generic.IList<Microsoft.Azure.Management.AppService.Fluent.Models.NameValuePair>> metadata = default);
new Microsoft.Azure.Management.AppService.Fluent.Models.Solution : Nullable<double> * string * Nullable<double> * string * Nullable<Microsoft.Azure.Management.AppService.Fluent.Models.SolutionType> * System.Collections.Generic.IList<System.Collections.Generic.IList<Microsoft.Azure.Management.AppService.Fluent.Models.NameValuePair>> * System.Collections.Generic.IList<System.Collections.Generic.IList<Microsoft.Azure.Management.AppService.Fluent.Models.NameValuePair>> -> Microsoft.Azure.Management.AppService.Fluent.Models.Solution
Public Sub New (Optional id As Nullable(Of Double) = Nothing, Optional displayName As String = Nothing, Optional order As Nullable(Of Double) = Nothing, Optional description As String = Nothing, Optional type As Nullable(Of SolutionType) = Nothing, Optional data As IList(Of IList(Of NameValuePair)) = Nothing, Optional metadata As IList(Of IList(Of NameValuePair)) = Nothing)

參數

id
Nullable<Double>

方案識別碼。

displayName
String

解決方案的顯示名稱

order
Nullable<Double>

解決方案的順序。

description
String

解決方案的描述

type
Nullable<SolutionType>

解決方案的類型。 可能的值包括:'QuickSolution'、'DeepInvestigation'、'BestPractices'

data
IList<IList<NameValuePair>>

解決方案資料。

metadata
IList<IList<NameValuePair>>

解決方案中繼資料。

適用於