HttpsCodeRequest 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package HttpsCodeRequest --version 1.0.1
NuGet\Install-Package HttpsCodeRequest -Version 1.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="HttpsCodeRequest" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HttpsCodeRequest --version 1.0.1
#r "nuget: HttpsCodeRequest, 1.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install HttpsCodeRequest as a Cake Addin
#addin nuget:?package=HttpsCodeRequest&version=1.0.1

// Install HttpsCodeRequest as a Cake Tool
#tool nuget:?package=HttpsCodeRequest&version=1.0.1

HTTP response status codes

Current Version Live Demo

HTTP response status codes indicate whether a specific HTTP request has been successfully completed.


Buy me a coffee

Whether you use this project, have learned something from it, or just like it, please consider supporting it by buying me a coffee, so I can dedicate more time on open-source projects like this 😃


Features

  • Informational responses (100 – 199)
  • Successful responses (200 – 299)
  • Redirection messages (300 – 399)
  • Client error responses (400 – 499)
  • Server error responses (500 – 599)
Note:
  • The status codes listed below are defined by RFC 9110

Setup

.net CLI

dotnet add package HttpsCodeRequest --version 1.0.0


Usage

After you clone this repo to your desktop, go to its root directory and run npm install to install its dependencies.

Directive import

using HttpsCodeRequest;

Return Value (OK)

Console.WriteLine(HttpsCode.OK);

Return Code (200)

Console.WriteLine((int)HttpsCode.OK);

Return Descrption

Console.WriteLine(HttpsCode.OK.GetDescription());

Console.WriteLine(HttpStatusCode.GetDescriptionByCode(HttpsCode.Continue));

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net7.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 131 5/31/2023
1.0.1 105 5/31/2023
1.0.0 99 5/30/2023