Note
Kailangan ng pahintulot para ma-access ang page na ito. Maaari mong subukang mag-sign in o magpalit ng mga direktoryo.
Ang pag-access sa pahinang ito ay nangangailangan ng pahintulot. Maaari mong subukang baguhin ang mga direktoryo.
This example shows how to specify a validation rule that the Windows PowerShell runtime can use to check the minimum and maximum values of the parameter argument before the cmdlet is run. You set this validation rule by declaring the ValidateRange attribute.
Note
For more information about the class that defines this attribute, see System.Management.Automation.ValidateRangeAttribute.
To validate an argument range
Add the ValidateRange attribute as shown in the following code. This example specifies a range of 0 to 5 for the
InputDataparameter.[ValidateRange(0, 5)] [Parameter(Position = 0, Mandatory = true)] public int InputData { get { return inputData; } set { inputData = value; } } private int inputData;
For more information about how to declare this attribute, see ValidateRange Attribute Declaration.