Share via


DeploymentType.Requirements Property

 

Requirements for the deployment type.

Namespace:   Microsoft.ConfigurationManagement.ApplicationManagement
Assembly:  Microsoft.ConfigurationManagement.ApplicationManagement (in Microsoft.ConfigurationManagement.ApplicationManagement.dll)

Syntax

public DcmRuleSet<Rule> Requirements { get; internal set; }
public:
property DcmRuleSet<Rule^>^ Requirements {
    DcmRuleSet<Rule^>^ get();
    internal: void set(DcmRuleSet<Rule^>^ value);
}
Public Property Requirements As DcmRuleSet(Of Rule)
    Get
    Friend Set
End Property

Property Value

Type: Microsoft.ConfigurationManagement.ApplicationManagement.DcmRuleSet<Rule>

Returns DcmRuleSet<T>.

Remarks

The supported requirements rule type varies based on the type of installation technology that is used.

Requirements are evaluated before the deployment is applied to a client. If the requirements are not meet, the deployment type is be ignored and the next lowest priority deployment type is evaluated and applied.

The priority of evaluation of requirements is determined by the position of each deployment type in the Application.DeploymentTypes list.

See Also

DeploymentType Class
Microsoft.ConfigurationManagement.ApplicationManagement Namespace

Return to top