TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About HTTP requests
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Ajay Kumar (3)
Sardar Mudassar Ali Khan (3)
Vijay Yadav (2)
Amit Mohanty (1)
Nilesh Jadav (1)
Pradeep Sahoo (1)
Gajendra Jangid (1)
John Godel (1)
Velladurai (1)
Manoj Kulkarni (1)
Parth Dave (1)
Sarthak Varshney (1)
Pankaj Kumar Choudhary (1)
Akshay Phadke (1)
Jaimin Shethiya (1)
Tuhin Paul (1)
Jayraj Chhaya (1)
Kaviya Balasubramanian (1)
Esmael Esmaeli (1)
Jignesh Trivedi (1)
Hamid Khan (1)
Ashish Shukla (1)
Jigar Desai (1)
Related resources for HTTP requests
No resource found
Integrating OpenAI's Assistant API in .NET Applications
10/30/2024 5:41:53 AM.
Integrating OpenAI's Assistant API in .NET empowers developers with advanced natural language processing capabilities. Using C# and Visual Studio, set up your project, manage API credentials secur
Create A Simple Web Service In ASP.NET Using C#
9/12/2024 6:14:14 AM.
This guide covers building a REST API, handling HTTP requests, and integrating with JSON/XML data formats. Ideal for beginners, it provides step-by-step instructions using Visual Studio, focusing on p
CQRS Simplified - Explained and Implemented
7/30/2024 9:13:28 AM.
CQRS (Command Query Responsibility Segregation) in .NET Core separates read and write operations for better scalability and performance. By using distinct models for commands and queries, it simplifie
How to Use ChatGPT?
7/25/2024 8:17:09 AM.
ChatGPT, developed by OpenAI, is a cutting-edge language model designed for versatile text generation and understanding. It assists with tasks like answering questions, content creation, and coding he
Understanding HTTP Interceptors In AngularJS
7/18/2024 3:19:24 PM.
Explore the intricacies of HTTP Interceptors in AngularJS with our comprehensive guide. Learn how interceptors can modify HTTP requests and responses globally, handle authentication, logging, and cach
Two Factor Google Authenticator Using ASP.NET Core And Angular
7/18/2024 12:26:15 PM.
Implementing 2-Factor Google Authenticator with ASP.NET Core and Angular enhances security by requiring users to provide a time-based one-time password (TOTP) alongside their password.
Angular vs. AngularJS: Key Differences and Syntax Changes
7/15/2024 5:02:27 AM.
AngularJS revolutionized web development with two-way data binding and a modular approach. Angular (2+) addresses performance issues, offering a modern framework with enhanced features like robust dep
How to Use AlpineGate AI's AlbertAGPT Model via API in C#
7/5/2024 8:11:06 AM.
Utilize AlpineGate AI's AlbertAGPT model through its API in C# for text generation and NLP tasks. Interact via HTTP requests, handling JSON serialization, and manage authentication for seamless in
Building a Basic Login Form with Angular and HttpClient
7/1/2024 6:38:09 AM.
Learn to build a secure login form in Angular using HttpClient for HTTP requests. This tutorial covers creating a TypeScript component, handling HTTP POST requests to a backend API, and integrating wi
Exposing Local Web Server To Internet Using Ngrok
6/21/2024 10:05:05 AM.
Learn how to expose a local web server to the internet using Ngrok. Ngrok allows seamless testing and debugging by creating tunnels that support HTTPS for local applications. This tool is invaluable f
CRUD Operation In Angular 6
6/18/2024 10:47:23 AM.
Learn how to implement CRUD operations in Angular 6 effectively with this comprehensive guide. Discover how to create, read, update, and delete data using Angular's HTTP client to communicate with
Integrating .NET Core API with WhatsApp for Push Notification
6/3/2024 11:00:15 AM.
Learn how to integrate .NET Core API with WhatsApp API to send push notifications and enhance user engagement with real-time messaging.
What Is $HTTP Service In AngularJS
5/3/2024 8:59:52 AM.
Learn about the $HTTP service in AngularJS, which facilitates making HTTP requests from the client side. Explore how to use $http for fetching data, sending data to servers, and handling responses asy
Learn $http Service In AngularJS
4/22/2024 6:58:58 AM.
Explore AngularJS $http service for making HTTP requests with configuration objects, utilizing built-in services like $log for debugging, handling asynchronous responses with promise objects, and util
IHttpClientFactory in .NET Core
4/5/2024 9:50:07 AM.
In this article, we will learn IHttpClientFactory in .NET Core simplifies HTTP client management by providing a central mechanism for creating and managing HttpClient instances.
Implementing Resilient HTTP Requests in C#
3/16/2024 11:08:30 AM.
Ensuring reliable communication between systems is vital. Learn how to implement resilient HTTP requests in C# using Polly for robust, fault-tolerant applications.
Vue.js HTTP Requests: Error Handling, Authentication, and File Uploads
2/28/2024 5:09:20 AM.
Vue.js, with its simplicity and reactivity, is not only a front-end framework but also excels in facilitating communication between the client and server through HTTP requests. In this article, we wil
Third-party API Integration in Asp.NET Core Web API
2/20/2024 6:21:52 AM.
ASP.NET Core is a powerful framework for building web APIs, allowing developers to create robust and scalable applications. One of the key features of modern web development is the integration of thir
Use .http files in Visual Studio
2/13/2024 5:52:23 AM.
In Visual Studio, .http files enable direct API testing within the IDE from Visual Studio 2019 onwards. Before this, developers relied on tools like Postman or Swagger, or unit testing. These files st
Get All The Users In An O365 Organization Using Graph API
2/9/2024 7:21:02 AM.
In this article, I would like to explain and share the NodeJS code to get all the users from O365 using Graph API and will also discuss how to validate the graph API users' results again in the o3
Routing to Controller Actions in ASP.NET Core MVC
1/30/2024 4:15:10 AM.
In ASP.NET Core, routing to controller actions is facilitated through attributes that define route templates, mapping incoming HTTP requests to specific actions. Multiple conventional routes can be es
Using RESTSharp for CRUD Operations in ASP.NET Core Web API
12/19/2023 7:24:01 AM.
Utilizing RESTSharp for CRUD operations in ASP.NET Core Web API offers a streamlined approach to interacting with APIs. This library simplifies HTTP requests and responses, allowing developers to focu
What is Action, Non-Action Methods and Types of Action Results
10/10/2023 5:31:57 AM.
In ASP.NET Core, actions are the methods within a controller that handle HTTP requests and produce HTTP responses. These actions can return different types of action results, which determine how the r
Implementing A Proxy Server In C# - An Example And Test Case
12/9/2022 11:48:43 AM.
In this tutorial, we provide an example of how to create a simple proxy server in a C# application using the HttpListener class. We also show how to write a test case to verify that the proxy server w
Manage HTTP Requests In Angular: Http Interceptor
7/18/2022 9:36:14 AM.
Manage HTTP Requests In Angular using Http Interceptor
HTTP Requests Using IHttpClientFactory
7/17/2020 5:54:01 AM.
In this article, you will learn about HTTP requests using IHttpClientFactory.
HTTP Requests in ASP.NET
12/23/2011 9:19:10 AM.
In ASP.NET to process requests a pipeline model is used which consists of HTTPModules and HTTPHnadler objects. This pipeline model forms the low level framework which is used by web pages and web services. Here we will see high level overview of asp.net request processing.
HTTP Handlers for Images in ASP.NET
12/26/2005 3:51:11 AM.
Have you ever thought of streaming thumbnails just by passing query string indicating width or height of thumbnail you need, and most importantly passing those to image itself?
- Ebook
Source Code: Graphics Programming with GDI+
Graphics Programming with GDI+ is the .NET developer's guide to writing graphics appl...
Download