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
{
/// <summary>Provides the base interface for creating <see cref="T:System.Net.WebRequest" /> instances.</summary>
// Token: 0x02000246 RID: 582
public interface IWebRequestCreate
{
/// <summary>Creates a <see cref="T:System.Net.WebRequest" /> instance.</summary>
/// <returns>A <see cref="T:System.Net.WebRequest" /> instance.</returns>
/// <param name="uri">The uniform resource identifier (URI) of the Web resource. </param>
/// <exception cref="T:System.NotSupportedException">The request scheme specified in <paramref name="uri" /> is not supported by this <see cref="T:System.Net.IWebRequestCreate" /> instance. </exception>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="uri" /> is null. </exception>
/// <exception cref="T:System.UriFormatException">The URI specified in <paramref name="uri" /> is not a valid URI. </exception>
// Token: 0x060014C3 RID: 5315
WebRequest Create(global::System.Uri uri);
}
}