Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using SIS.HTTP.Enums;
- namespace SIS.HTTP.Extensions
- {
- public static class HttpResponseStatusExtensions
- {
- public static string GetResponseLine(this HttpResponseStatusCode statusCode)
- {
- return $"{(int)statusCode} {statusCode.ToString()}";
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement