RequestChecker.CheckInRange Method (String, String, Int32, Int32)
Checks whether the parameter is in the required Int32 range.
Namespace: Microsoft.WindowsServerSolutions.WebApi.Framework
Assembly: Wssg.WebApi.Framework (in Wssg.WebApi.Framework.dll)
Syntax
public static void CheckInRange(
string paramName,
string paramValue,
int range1,
int range2
)
public:
static void CheckInRange(
String^ paramName,
String^ paramValue,
int range1,
int range2
)
Public Shared Sub CheckInRange (
paramName As String,
paramValue As String,
range1 As Integer,
range2 As Integer
)
Parameters
paramName
Type: System.StringThe name of the parameter to check.
paramValue
Type: System.StringThe value of the parameter.
range1
Type: System.Int32The beginning of the range.
range2
Type: System.Int32The end of the range.
See Also
CheckInRange Overload
RequestChecker Class
Microsoft.WindowsServerSolutions.WebApi.Framework Namespace
Return to top