About 68,800 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

    Jun 17, 2024 · 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. Understanding [HttpGet] and [HttpPost] in ASP.NET MVC

    One of the most fundamental concepts in MVC is the use of HTTP verbs, especially GET and POST, implemented using the attributes [HttpGet] and [HttpPost]. This article explains why we …

  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. 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.

  6. Make HTTP requests with the HttpClient - .NET | Microsoft Learn

    In this article, you learn how to make HTTP requests and handle responses with the HttpClient class. All of the example HTTP requests in this article target one of the following URLs: …

  7. HttpGet (Apache HttpClient 5.5.2 API)

    Parameters: uri - a non-null request URI. Throws: IllegalArgumentException - if the uri is null. HttpGet public HttpGet(String uri)

  8. How to use [HttpPost], [HttpGet] in ASP.NET Core Web API

    Aug 1, 2021 · When the action contains the [HttpGet] or [HttpPost] attribute (without the template string), it restricts the matching to only HTTP GET or Post requests. When using the HTTP …

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

    Jul 4, 2025 · The GET HTTP method requests a representation of the specified resource. Requests using GET should only be used to request data and shouldn't contain a body. Note: …

  10. 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.