Class Int32Extensions
- Namespace
- Cuemon.Extensions.AspNetCore.Http
- Assembly
- Cuemon.Extensions.AspNetCore.dll
Extension methods for the int struct.
public static class Int32Extensions
- Inheritance
-
Int32Extensions
Methods
IsClientErrorStatusCode(int)
Determines whether the specified statusCode is within the client error related range.
public static bool IsClientErrorStatusCode(this int statusCode)
Parameters
Returns
- bool
trueifstatusCodewas in the Client Error range (400-499); otherwise,false.
IsInformationStatusCode(int)
Determines whether the specified statusCode is within the informational range.
public static bool IsInformationStatusCode(this int statusCode)
Parameters
Returns
- bool
trueifstatusCodewas in the Information range (100-199); otherwise,false.
IsNotModifiedStatusCode(int)
Determines whether the specified statusCode equals a 304 Not Modified.
public static bool IsNotModifiedStatusCode(this int statusCode)
Parameters
Returns
- bool
trueifstatusCodeis NotModified (304); otherwise,false.
IsRedirectionStatusCode(int)
Determines whether the specified statusCode is within the redirecting range.
public static bool IsRedirectionStatusCode(this int statusCode)
Parameters
Returns
- bool
trueifstatusCodewas in the Redirection range (300-399); otherwise,false.
IsServerErrorStatusCode(int)
Determines whether the specified statusCode is within the server error related range.
public static bool IsServerErrorStatusCode(this int statusCode)
Parameters
Returns
- bool
trueifstatusCodewas in the Server Error range (500-599); otherwise,false.
IsSuccessStatusCode(int)
Determines whether the specified statusCode is within the successful range.
public static bool IsSuccessStatusCode(this int statusCode)
Parameters
Returns
- bool
trueifstatusCodewas in the Successful range (200-299); otherwise,false.