你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

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>

解决方案 ID。

displayName
String

解决方案的显示名称

order
Nullable<Double>

解决方案的顺序。

description
String

解决方案的说明

type
Nullable<SolutionType>

解决方案的类型。 可能的值包括:“QuickSolution”、“DeepInvestigation”、“BestPractices”

data
IList<IList<NameValuePair>>

解决方案数据。

metadata
IList<IList<NameValuePair>>

解决方案元数据。

适用于