About 63,600 results
Open links in new tab
  1. HttpGet (Apache HttpClient 4.5.14 API)

    Returns the HTTP method this request uses, such as GET, PUT, POST, or other.

  2. Routing to controller actions in ASP.NET Core | Microsoft Learn

    Aug 28, 2025 · Each action contains the [HttpGet] attribute, which constrains matching to HTTP GET requests only. The GetProduct action includes the "{id}" template, therefore id is …

  3. A Beginner’s Guide to [HttpGet], [Route], and [ApiController

    Aug 13, 2025 · When I first started working with ASP.NET Core, I saw controller methods that were decorated with [HttpGet], [Route], [FromBody], and others.

  4. ASP.NET HttpGet - Using HttpGet in ASP.NET - ZetCode

    Apr 3, 2025 · GET is the most common HTTP method used to retrieve data from a server. When applied to an action method, HttpGet specifies that the method should be invoked when …

  5. Understanding [HttpGet] and [HttpPost] in ASP.NET MVC

    This article explains why we use [HttpGet] and [HttpPost], their purpose, and how to use the same action name safely with a real-time example from a typical business application.

  6. RESTful Web API Development with [HttpGet] in C# – The …

    Jun 22, 2025 · This guide dives deep into building RESTful APIs using [HttpGet] in C# and ASP.NET Core. From basic setup to advanced techniques like pagination, filtering, …

  7. GET request method - HTTP | MDN - MDN Web Docs

    Jul 4, 2025 · It’s been available across browsers since ⁨July 2015⁩. The GET HTTP method requests a representation of the specified resource. Requests using GET should only be used …

  8. Apache HttpClient - Http Get Request - Online Tutorials Library

    The HttpGet class represents the HTTPGET request which retrieves the information of the given server using a URI. Create a HTTP GET request by instantiating this class.

  9. HTTP Methods GET vs POST - W3Schools

    HTTP Methods GET POST PUT HEAD DELETE PATCH OPTIONS CONNECT TRACE The two most common HTTP methods are: GET and POST.

  10. HTTP GET Method in ASP.NET Core Web API

    Here are key aspects of the HTTP GET method: Purpose: The GET method is designed to retrieve information from the server. GET requests should only retrieve data and should have …