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.
aik-jahoda on v2.1.25-dependencies
Anipik on 3.1
update branding to 3.1.14 (#281… (compare)
Anipik on 2.1
update branding to 2.1.27 (#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;
}