How to Validate an Argument Range
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
InputData
parameter.[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.
See Also
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
PowerShell