Extract response exceptions
[smsapi-csharp.git] / smsapi / Api / Response / HttpCodesGroupHelper.cs
blob1cde0945a80fa8530db7a1566647bb269c0b00a4
1 using System.Net;
3 namespace SMSApi.Api.Response;
5 public static class HttpCodesGroupHelper
7 public static bool IsSuccessful(this HttpStatusCode statusCode)
9 var intRepresentation = (int)statusCode;
11 return intRepresentation is >= 200 and <= 299;