This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
using System;
namespace System.Net
{
// Token: 0x02000231 RID: 561
internal class HttpRequestCreator : IWebRequestCreate
{
// Token: 0x060013BE RID: 5054 RVA: 0x0003D300 File Offset: 0x0003B500
internal HttpRequestCreator()
{
}
// Token: 0x060013BF RID: 5055 RVA: 0x0003D308 File Offset: 0x0003B508
public WebRequest Create(global::System.Uri uri)
{
return new HttpWebRequest(uri);
}
}
}