This repo contains the .NET Core runtime, called CoreCLR. It is an execution engine for .NET apps, performing functions such as IL byte code loading, compilation to machine code and garbage collection. The repo contains the complete up-to-date CoreCLR codebase.
Anipik on 2.1
Merge in 'release/2.1' changes Merge commit 'c814243d7d94b640b… Merge pull request #28160 from … (compare)
sdmaclea on 3.1-crossdac
update branding to 3.1.14 (#281… [release/3.1] Fix lazy machine … GCStress eventing fix (#28148) and 5 more (compare)
dotnet-maestro[bot] on 3.1-6959cf38-1ad3-47de-bbd7-d69ad0afc123
Update dependencies from https:… (compare)
Anipik on 3.1
Update branding to 3.1.15 (#281… (compare)
aik-jahoda on 2.1
Update branding to 2.1.28 (#281… (compare)
((WebRequest)(request)).Timeout = 1000000;
private static HttpWebRequest CreateRequest(string Method, string Url, IDictionary Args)
{
string json = JsonSerializer.Serialize(Args);
var request = (HttpWebRequest)WebRequest.Create(Url);
request.Timeout = 10000;
//((WebRequest)(request)).Timeout = 1000000;
request.Method = Method;
request.ContentType = "application/json";
var bytes = Encoding.ASCII.GetBytes(json);
request.ContentLength = bytes.Length;
using (var stream = request.GetRequestStream())
{
stream.Write(bytes, 0, bytes.Length);
}
return request;
}