Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Checks whether the parameter is in the required Int64 range.
Namespace: Microsoft.WindowsServerSolutions.WebApi.Framework
Assembly: Wssg.WebApi.Framework (in Wssg.WebApi.Framework.dll)
Syntax
public static void CheckInRange(
string paramName,
string paramValue,
long range1,
long range2
)
public:
static void CheckInRange(
String^ paramName,
String^ paramValue,
long long range1,
long long range2
)
Public Shared Sub CheckInRange (
paramName As String,
paramValue As String,
range1 As Long,
range2 As Long
)
Parameters
paramName
Type: System.StringThe name of the parameter to check.
paramValue
Type: System.StringThe value of the parameter.
range1
Type: System.Int64The beginning of the range.
range2
Type: System.Int64The end of the range.
See Also
CheckInRange Overload
RequestChecker Class
Microsoft.WindowsServerSolutions.WebApi.Framework Namespace
Return to top