Solution Construtores
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
Solution() |
Inicializa uma nova instância da classe Solution. |
Solution(Nullable<Double>, String, Nullable<Double>, String, Nullable<SolutionType>, IList<IList<NameValuePair>>, IList<IList<NameValuePair>>) |
Inicializa uma nova instância da classe Solution. |
Solution()
Inicializa uma nova instância da classe Solution.
public Solution ();
Public Sub New ()
Aplica-se a
Solution(Nullable<Double>, String, Nullable<Double>, String, Nullable<SolutionType>, IList<IList<NameValuePair>>, IList<IList<NameValuePair>>)
Inicializa uma nova instância da classe Solution.
public Solution (double? id = default, string displayName = default, double? order = default, string description = default, Microsoft.Azure.Management.WebSites.Models.SolutionType? type = default, System.Collections.Generic.IList<System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.NameValuePair>> data = default, System.Collections.Generic.IList<System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.NameValuePair>> metadata = default);
new Microsoft.Azure.Management.WebSites.Models.Solution : Nullable<double> * string * Nullable<double> * string * Nullable<Microsoft.Azure.Management.WebSites.Models.SolutionType> * System.Collections.Generic.IList<System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.NameValuePair>> * System.Collections.Generic.IList<System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.NameValuePair>> -> Microsoft.Azure.Management.WebSites.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)
Parâmetros
- displayName
- String
Nome de exibição da solução
- description
- String
Descrição da solução
- type
- Nullable<SolutionType>
Tipo de Solução. Os valores possíveis incluem: 'QuickSolution', 'DeepInvestigation', 'BestPractices'
- data
- IList<IList<NameValuePair>>
Dados da solução.
- metadata
- IList<IList<NameValuePair>>
Metadados da solução.
Aplica-se a
Azure SDK for .NET