python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
C# - Multiple web request at the same time
I want to fetch some data from a web api at same time. so I wrote this code :
public string GetData(string x)
{
try
{
string URL = "https://MyApi.com/api?data=" + x;
...
mohammad noori
Votes: 0
Answers: 0
C# HttpWebRequest Exeption Cookies
Hi I'm trying to convert a python code to C#. My Problem is, that I have a problem to make a HttpWebRequest. I don't get the cookies for the POST Request.
The Website response is 404. That is correct....

larsimoto
Votes: 0
Answers: 1
What are the reasons an HttpWebRequest might take half a minute to get a response?
I'm developing an app for a school project which uses data from CoinGecko's free public API. The way I'm getting the data is with the HttpWebRequest class. At first, I was able to use the API fast, wi...
Filip Grgić
Votes: 0
Answers: 1
Get List of files from folders and subfolders from sharepoint using REST API C#
I want to populate a list in my code, with the fileNames present in a folder and subfolders in Sharepoint Onpremises path.
Here is my code so far:
private void GetListOfFiles()
{
U...
Cherylaksh
Votes: 0
Answers: 0