Nóta
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as shíniú isteach nó eolairí a athrú.
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as eolairí a athrú.
This example shows how to specify a validation rule that the Windows PowerShell runtime can use to check the parameter argument before the cmdlet is run. This validation rule provides a set of the valid values for the parameter argument.
Note
For more information about the class that defines this attribute, see System.Management.Automation.ValidateSetAttribute.
To validate an argument set
Add the ValidateSet attribute as shown in the following code. This example specifies a set of three possible values for the
UserNameparameter.[ValidateSet("Steve", "Mary", "Carl", IgnoreCase = true)] [Parameter(Position = 0, Mandatory = true)] public string UserName { get { return userName; } set { userName = value; } } private string userName;
For more information about how to declare this attribute, see ValidateSet Attribute Declaration.
See Also
System.Management.Automation.ValidateSetAttribute