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 TPC
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Amir Ali (7)
Ajay Kumar (5)
Jaimin Shethiya (4)
Sardar Mudassar Ali Khan (4)
Satyaprakash Samantaray (4)
George (4)
Devesh Omar (2)
Vijay Yadav (2)
Velladurai (2)
Jitendra Mesavaniya (2)
Vinoth Xavier (2)
Jignesh Trivedi (2)
Sourav Kayal (2)
Gaurav Gahlot (2)
Alex Groysman (2)
Mervyn Manilall (1)
Priya Chavadiya (1)
Yash Rajora (1)
Rohit Rao (1)
Ramaprasad Upadhyaya (1)
Mark Pelf (1)
Sumit Kharche (1)
Rasmita Dash (1)
Amin Golmahalleh (1)
Arvind Yadav (1)
Vithal Wadje (1)
Harmesh Kaushik (1)
Esamaldin Mohammed (1)
Munib Butt (1)
Kishan Zalariya (1)
Debasis Saha (1)
Anup Hosur (1)
Khaja Moizuddin (1)
Santosh Karanam (1)
Kailash Chandra Behera (1)
Yousef Shawareb (1)
Sanjay Kumar (1)
Guest User (1)
Sandhya Shinde (1)
Hamid Khan (1)
Periyasamy Vellingirisamy (1)
Ahmed Bouchefra (1)
Abhishek Yadav (1)
Mohammad Sbeeh (1)
Geo J Thachankary (1)
Abhimanyu K Vatsa (1)
Jinal Shah (1)
C# Curator (1)
Catcher Wong (1)
Nanddeep Nachan (1)
Jeeva Subburaj (1)
Nakkeeran Natarajan (1)
Jose Carlos Macoratti (1)
Rion Williams (1)
Sibeesh Venu (1)
Suresh M (1)
Nirmal Hota (1)
Raj Kumar (1)
Shripad Kulkarni (1)
Nipun Tomar (1)
Resco (1)
Seyed Mostafa Mansourfar (1)
Praveen K Prasad (1)
Ganesh Sundaram (1)
Jigar Desai (1)
Related resources for TPC
No resource found
Baisc of IHttpClientFactory in .NET Core
9/10/2024 7:03:57 AM.
IHttpClientFactory in .NET Core simplifies HTTP client creation, improves performance, and promotes the reuse of HttpClient instances. It offers built-in features like dependency injection, named and
Understanding HttpClient Best Practice
9/2/2024 7:56:51 AM.
Creating a new HttpClient instance frequently can lead to performance issues like socket exhaustion due to open sockets lingering in the TIME_WAIT state. Instead, reuse a singleton HttpClient instance
Decouple Frontend and Backend with Postman Mock Server in Angular
8/23/2024 9:55:11 AM.
Postman Mock Servers let front-end developers bypass backend dependencies by simulating API responses. In an Angular project, configure interceptors to direct API calls to mock servers or actual APIs
Use HttpClientFactory Over HttpClient in .NET
8/5/2024 5:43:02 AM.
Discover the advantages of using HttpClientFactory over directly instantiating HttpClient in .NET Core. HttpClientFactory improves efficiency and resource management by providing a centralized way to
Making API Calls in Angular Using Services
7/24/2024 9:26:51 AM.
Learn to leverage Angular's HttpClient to communicate with RESTful APIs, handle HTTP requests and responses, and implement best practices for efficient and maintainable code.
Creating a complete CRUD (Create, Read, Update, Delete) application in Angular
7/10/2024 5:14:12 AM.
Build a CRUD application in Angular using Angular CLI for setup, components for UI, services for data management with HttpClient for API interactions. Implement CRUD operations (Create, Read, Update,
C# Method Designed to Make a POST Request to a Web API Endpoint
7/4/2024 5:31:08 AM.
This guide covers API integration in C#, detailing serialization, encryption, HTTP requests, and error handling. Learn how to set up an API integration method, handle responses, and follow best practi
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
Enhancing Security with a Client IP Safelist in .NET
6/27/2024 9:43:12 AM.
Enhance your web application's security by implementing an IP safelist in ASP.NET Core. This technique restricts access to trusted IP addresses only, preventing unauthorized access. Our guide cove
Integerating Python Django in Blazor
6/26/2024 6:49:24 AM.
Integrate Python with Blazor using Django for robust web applications. This setup leverages Django's features like authentication and ORM, enhancing data processing, machine learning, and automati
IHttpClientFactory In .NET Core To Avoid Socket Exhaustion
6/5/2024 5:26:54 AM.
Learn how to effectively use HttpClient and IHttpClientFactory in .NET Core applications. Avoid common pitfalls of creating new HttpClient instances per request, leading to socket exhaustion. Discover
Remoting in .NET
6/4/2024 9:51:33 AM.
.NET Remoting enables distributed communication across app domains using various protocols, serialization formats, and object creation modes. Server-side, it creates a service exposing methods, access
Adobe products on CopilotPC/ARM/Windows (May 2024)
5/30/2024 4:51:49 AM.
Discover the latest updates on Adobe products for CopilotPC with ARM architecture and Windows compatibility as of May 2024. Learn about the enhanced performance and new features in Adobe Creative Suit
Understand the Refit in .NET Core
5/24/2024 4:56:07 AM.
We have a type-safe wrapper for communicating with HTTP-based APIs thanks to the C# Refit framework. We can build an interface that represents the API we want to interact with, rather than utilizing t
How To integrate Dependency Injection In Azure Functions
4/17/2024 8:05:24 AM.
Learn how to integrate Dependency Injection in Azure Functions, creating HTTP trigger functions, and injecting service objects using DI. Understand the Dependency Injection pattern, steps to add DI in
HttpClient vs IHttpClientFactory in .NET
4/16/2024 4:55:47 AM.
In the realm of .NET Core development, managing HTTP requests efficiently is crucial for building robust and high-performance applications. In this article, we delve into the differences between HttpC
HttpClient use Polly Retry Policies in .NET Core
4/10/2024 5:54:01 AM.
Polly, a robust .NET library, fortifies applications against faults with policies like Retry, Circuit Breaker, Timeout, etc. Configure retries for transient errors with ease, enhancing application res
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.
Explanation of HttpClient in .NET Core
4/3/2024 10:41:08 AM.
The HttpClient class simplifies making HTTP requests (like GET or POST) in your .NET Core applications. It handles connections, timeouts, and responses, letting you focus on the data you need.
Learn about ASP.NET MVC Life Cycle
4/1/2024 6:28:41 AM.
Understand the MVC life cycle from HTTP request to response. Learn about ASP.NET's Page class, IHttpHandler interface, and MVC's Controller. Explore RouteTable and UrlRoutingModule for routing
C# HTTP Methods: Safe vs. Unsafe, GET vs. POST in .NET Core
3/26/2024 11:05:19 AM.
Dive into advanced topics like dependency injection, service configuration, and implementing retry policies and circuit breakers. Elevate your API integration game with this comprehensive guide to lev
Optimize HttpClient Usage in .NET Core
3/26/2024 4:06:46 AM.
Dive into advanced topics like dependency injection, service configuration, and implementing retry policies and circuit breakers. Elevate your API integration game with this comprehensive guide to lev
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.
How To Generate Curl Script of the HttpClient in .NET
3/7/2024 11:22:06 AM.
The HttpClientToCurl is a NuGet package for generating the curl script of HttpClient in C# (.Net) supported features: Post, Get, Put and Delete. content types: application/json, text/xml, application/
Optimize ASP.NET Core MVC Data Transfer with Custom Middleware
2/1/2024 9:01:22 AM.
In ASP.NET Core, middleware components are used to handle requests and responses as they flow through the application's pipeline. These middleware components can be chained together to process req
HTTP Requests in .NET Core with HttpClient and HttpClientFactory
1/30/2024 11:55:26 AM.
In this article, we explore efficient HTTP request handling in .NET Core using HttpClient and harness the power of HttpClientFactory. Learn best practices for scalability, dependency injection, and op
Extending HttpClient With Delegating Handlers in ASP.NET Core
1/17/2024 11:30:32 AM.
Explore the power of the HttpClient class in ASP.NET Core through Delegating Handlers. Learn to create a custom handler for logging HTTP requests and responses, enhancing HttpClient functionality with
HttpClientHandler in C#
1/2/2024 4:46:07 AM.
Unlock the potential of C#'s HttpClient class with HttpClientHandler. Delve into its capabilities—handling cookies, managing proxies, configuring SSL/TLS, timeouts, and more—to optimize and contro
How To Make API Calls In Angular Applications
12/6/2023 10:29:44 AM.
Making API calls is a common task in Angular applications, and it can be achieved using Angular's built-in HttpClient service. Here are the steps on how to make API calls in Angular Applications.
Optimizing Resource Management in .NET HttpClient with Cancellation Tokens
11/17/2023 5:23:52 AM.
The .NET HttpClient class is a powerful tool for making HTTP requests, but it may lead to resource issues if not managed properly. Cancellation tokens in C# provide a mechanism to interrupt ongoing op
Consuming ASP.NET Web API REST Service In ASP.NET MVC Using HttpClient
10/10/2023 11:16:34 AM.
In this article, we will learn how to consume Web API REST Service in ASP.NET MVC using HttpClient.
How to Send Email Using ASP.Net With C#?
9/13/2023 10:55:47 AM.
In this article we will see the way to send email in ASP.Net C# There are several articles on web for sending an email using ASP.NET and C#. This article explains some important functions and common
Web API Testing with xUnit, NUnit, MSTest in ASP.NET Core
9/1/2023 8:20:13 AM.
writing unit tests, integration tests, and end-to-end tests for a Web API using xUnit testing framework in ASP.NET Core. Keep in mind that I won't be able to provide you with actual working code,
Call Web API in .NET and Filter Data using Bootstrap Filters with Less Code
8/27/2023 12:14:42 PM.
We can filter records for each columns in table with single textbox or search. With less code and few mins, We can implement that feature to work on complex data.
API Integration In Angular with Complete Example
8/11/2023 5:12:11 AM.
Angular is a popular open-source JavaScript framework for building dynamic and sophisticated web applications. It is developed and maintained by Google and is designed to simplify the development proc
HttpContextAccessor in Asp.NET Core Web API
5/27/2023 3:58:23 PM.
In ASP.NET Core Web API, the HttpContextAccessor class is a component that provides access to the current HTTP request and response context. It allows you to access various aspects of the HTTP request
Create Generic HttpClient Call Function With Error Handling In C#
3/9/2023 11:01:52 AM.
This article presents a step-by-step guide on how to create a generic HttpClient call function in C# that can handle different request methods, request body types, response types, and error handling u
Calling Multiple APIs Using HttpClient And Polly
1/6/2023 9:10:04 AM.
In this article, you will learn about calling multiple APIs using HttpClient and Polly.
Web Scraping In C# Using ScraperAPI
11/30/2022 3:37:46 AM.
In this article, we will explore how to create real life web scraper using ScraperAPI and HtmlAgilityPack.
Learn Angular 8 Step By Step In 10 Days - HttpClient Or Ajax Call (Day 9)
11/30/2022 3:26:30 AM.
In this article series, we will discuss a different aspect of Angular 8 for all types of users. We will discuss how to handle HttpClient modules in this article.
HTTP Best Practices Using ASP.NET Core And Polly
11/7/2022 4:28:41 AM.
HTTP best practices using ASP.NET Core and Polly.
How To Consume RestAPI Using HttpClient In C#
8/22/2022 7:28:19 AM.
In this article, you will learn how to consume RestAPI using HttpClient in c#.
Consume Web API By MVC In .NET Core (4), .NET Clients
7/4/2022 5:01:10 AM.
In this article, you will learn how to consume Web API By MVC In .NET Core (4), .NET Clients.
Consume Web API By MVC In .NET Core (2), HttpClient
6/28/2022 12:41:20 AM.
In this article, we create a ASP.NET Core 5.0 MVC app and associated with a Web API service in it by regular way. Then we write one line code for MVC client to consume Web API.
Consume Web API By MVC In .NET Core (3), HttpWebRequest
6/27/2022 11:56:41 PM.
Discuss Consume Web API By MVC In .NET, Client
Easily Use Flurl Testable HttpClient
4/27/2022 2:10:19 PM.
Flurl is fluent testable portable opensource for commercial usage httpclient library for modern .net
Sending a Simple Email Using SmtpClient in C#
3/2/2022 10:20:18 AM.
This article introduces how to send a sample email using SmtpClient in C#.
How To Consume Web API In An ASP.NET Gridview Using HttpClient
11/24/2021 4:27:57 AM.
In this article, you will learn how to consume Web API in an ASP.NET GridView using HttpClient.
Calling Web API Using HttpClient
8/13/2021 8:08:02 AM.
C# HttpClient. In this article, you will learn how to call Web API using HttpClient in ASP.NET. HttpClient class provides a base class for sending/receiving the HTTP requests/responses from a URL. It
CORS (2), Consume .NET Core Web API By Angular Client in Same Origin
7/8/2021 10:58:56 AM.
This article gives a sample of Web API consumer, Angular client.
Send Asynchronous Mail With Attachment Using ASP.Net 4.5
5/27/2021 5:55:51 AM.
This article explains how to send an email with attachments using SmtpClient.SendAsync.
Entity Framework (TPT): Part II
2/12/2021 7:19:40 AM.
Table-per-type inheritance uses a separate table in the database to maintain data and uses a single entity type in the Entity Framework. In other words, there is a single entity set in the Entity Fram
Difference Between HttpContext.Current.Items and HttpContext.Current.Session in ASP.Net
1/12/2021 10:20:06 AM.
In this small discussion you will see the difference between HttpContext.Current.Session and HttpContext.current.Item.
HttpContext Class in ASP.Net
1/8/2021 7:32:38 AM.
This article provides a slow introduction to the HttpContext class and its use for authentication.
Consuming ASP.NET Core 2.0 Web API Using HttpClient
11/19/2020 11:21:57 PM.
We’ll create a library to wrap the functionality of HttpClient. I’ll use builder pattern for this purpose. Add a class with methods for storing parts of HttpClient.
RxJS Observables And Server Communication Using Httpclient
9/5/2020 1:53:01 PM.
In this article, we are going to explore the concept of RxJS Observables and server communication using HttpClient.
HTTP Requests Using IHttpClientFactory
7/17/2020 5:54:01 AM.
In this article, you will learn about HTTP requests using IHttpClientFactory.
Mocking Httpclient Using XUnit In .Net Core
6/10/2020 5:58:20 AM.
Mocking HttpClient using XUnit with the help of HttpClient property in Interface (Wrapper class).
How To Use HttpClient With Example In Angular 9
4/6/2020 2:19:07 PM.
We'll learn to use HttpClient in Angular to send HTTP requests
How to Send Employee Information to the Local Server in Android
4/2/2020 2:18:42 AM.
This article explains how to send employee information to the local server in Android.
AsyncTask Class in Android
4/2/2020 1:11:33 AM.
This article explains the AsyncTask class in Android.
JSONParsing and HTTPClient in Android
4/1/2020 1:52:00 AM.
In this article you will learn about JSONParsing and HTTPClient in Android using Android Studio.
HttpClient in Android
4/1/2020 1:43:12 AM.
This article explains how to post data using HttpClient in Android. Android Studio is used to create the sample.
XML Parsing Using DOM Parser in Android Studio
3/25/2020 11:52:14 PM.
Inthis article you will learn how to parse Xml using Dom parser
XmlParsing Using XmlPullParser in Android Studio
3/25/2020 4:30:46 AM.
In this Article you will Learn about Xmlparsing using PullPArser
Introduction To Building ASP.NET Core And Angular Web Application
3/24/2020 9:56:19 AM.
In this article, you will learn how to build ASP.NET Core and Angular Web Application.
HTTP in Android
2/27/2020 3:11:21 AM.
This article explains HTTP in Android. HTTP stands for HyperText Transfer Protocol. It is used for communication between the client and server. HTTP works as a request/response protocol between a clie
Create And Consume Azure Function From ASP.NET Core
4/18/2019 8:32:17 AM.
Azure Functions lets you execute your code in a serverless environment without having to first create a VM or publish a web application.You learn how create azure function by use Visual Studio 2017
Create A Typed HttpClient With HttpClientFactory In ASP.NET Core
4/5/2019 8:07:13 AM.
HttpClient is one of the most commonly-used classes in the .NET framework by developers to call external APIs from an application. In this article, we will learn how to create a typed HttpClient with
SmtpClient Class in ASP.NET using VB.NET
2/7/2019 4:29:47 AM.
In this article we will discuss SmtpClient Class. SmtpClient Class allows the developer to send emails (electronic mails). SmtpClient Class is available in System.Net.Mail Namesapce.
Interceptors - An Important Feature Of HTTP Client
2/5/2019 8:56:44 AM.
In this article, we will learn about Interceptors, one of the important and useful features of HTTP Client.
Cookies in ASP.NET
2/3/2019 11:46:49 PM.
In this article I will explain you about cookies in ASP.NET and how to use them.
Combine WebApiClient With HttpClientFactory To Call REST APIs
9/10/2018 10:51:41 AM.
This article introduced how to combine WebApiClient with HttpCLientFactory to call REST APIs that we can use in our .NET Core server-side code.
SharePoint Framework - Consume Microsoft Graph API Using AadHttpClient
9/5/2018 8:52:33 AM.
In this article, we will explore to consume the Microsoft Graph in SharePoint Framework client-side web parts using AadHttpClient.
A Better Approach To Access HttpContext Outside A Controller In .Net Core 2.1
8/7/2018 1:04:50 AM.
In this approach, we are going to create a static AppContext class. This class is going to hold the current Http session as a property called Current.
Using HttpContext Outside An MVC Controller In .Net Core 2.1
8/6/2018 12:29:06 AM.
With .Net Core 2.1 we can not access the HttpContext outside a controller, however, we can use the IHttpContextAccessor to access the current session outside a controller.
Real Time Language Translation Chat Using SignalR And Azure Cognitive Services And TypedHttpClient - .Net Core 2.1
6/9/2018 6:26:10 AM.
This is a real time translation chat application using the language of your choice in two way communication (sending and receiving) using SignalR and Cognitive Services Translate API in .Net Core 2.1
ASP.NET Web API Using MVC And HttpClient To Upload And Download Files - Part Eight
5/21/2018 11:34:07 AM.
Web API is the best fit to create a resource-oriented service using HTTP/Restful and it works well with MVC-based applications. For more details, visit this link.
ASP.NET Web API Using MVC, Entity Framework And HttpClient For Get And Post With Validation - Part Six
5/14/2018 7:00:45 AM.
WEB API is the best fit to create a resource-oriented service using HTTP/Restful and it works well with MVC-based applications. For more details visit my link.
ASP.NET Web API Using MVC, Entity Framework And HttpClient For Retrieve Data - Part Four
4/30/2018 10:13:03 AM.
The .NET 4.5 includes HttpClient class to overcome the limitation of WebClient. HttpClient class to send data to and receive data from Web API which is hosted on local IIS web server. HttpClient in o
SharePoint REST Calls With SPHttpClient Class In SPFx Webparts
7/31/2017 11:46:30 AM.
Let us look at the usage of sphttpclient in SPFx solutions for making REST calls.
Xamarin Android - Consuming REST Services With HttpClient
3/1/2017 11:55:35 PM.
In this article, you will learn how to consume REST Services with HttpClient, using Xamarin Android.
Accessing Identity And HttpContext Info Using Dependency Injection In .NET Core
10/11/2016 10:43:34 AM.
In this article, you will learn how to access Identity and HttpContext Info using Dependency Injection in .NET Core.
Web API With HttpClient Or Consume Web API From Console Application
3/26/2016 12:19:44 PM.
In this article we are going to learn how to call Web API using HttpClient.
Consume Web Service Using HttpClient to POST And GET JSON Data In Windows 10 UWP
11/26/2015 5:21:49 AM.
In this article, we will see how to consume a REST service in Windows 10. Before that we will introduce REST services.
Consuming Restful Web Service in Xamarin.forms Project Using Httpclient
2/16/2015 3:22:42 PM.
In this article you will learn how to consume a Restful Web Service in a Xamarin.forms project using HttpClient.
Consume ASP.Net Web API Using HttpClient in WPF
7/4/2013 11:56:42 PM.
In this article you will learn how to consume a Web API using HttpClient in WPF.
Advanced Technique to Improve Sudoku for PocketPC
10/4/2012 10:07:06 AM.
This article will explain a techniques to visualize sudoku in pocketPC environment and adding some helpful addons.
.NET Remoting: The Simple Approach
9/30/2012 2:35:09 AM.
.NET Remoting provides a powerful and high performance way of working with remote objects. Architecturally, .NET Remote objects are a perfect fit for accessing resources across the network without the overhead posed by SOAP based Web services.
Update FormsAuthenticationTicket
7/27/2012 2:25:29 AM.
How to update the FormsAuthenticationTicket once it is created
Build Dynamics CRM mobile Apps That Work on WM, TabletPC, iPhone or iPad
5/19/2012 4:08:28 AM.
Resco MobileCRM Studio is a developer platform that assists in the development of mobile applications which are used as extensions to Microsoft Dynamics CRM.
Sending E-mail using SMTP Service
8/21/2006 1:38:01 AM.
This article actually is a mail console which is implemented by C# 2.0 and designed to send a standard mail message to one or more receptions.
HTTP Compression with HttpCompress
5/8/2006 12:16:45 AM.
This article describes how to enable HTTP compression for ASP.net web applications without having direct access to the server and by using an <b>HttpModule.</b>
How to synchronize data in Pocket PC and main database
1/30/2006 11:32:10 PM.
The main objective of the article is to present how to synchronize the data between the Pocket PC database and main database using Pocket PC Emulator and Web Service in .NET
Sudoku generating and solving using C# in PocketPC SDK
1/30/2006 5:54:54 AM.
The article is about a program writen in C# to create a simple game application - sudoku. The game can generate several diffculty level sudokus with one solution, solve previously entered puzzles etc.
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?