Files
Apr2020-Cpp2Il-Dump/System/Net/IWebRequestCreate.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

29 lines
1.3 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Net
{
/// <summary>Provides the base interface for creating <see cref="T:System.Net.WebRequest" /> instances.</summary>
// Token: 0x0200022F RID: 559
[Token(Token = "0x200022F")]
public interface IWebRequestCreate
{
/// <summary>Creates a <see cref="T:System.Net.WebRequest" /> instance.</summary>
/// <param name="uri">The uniform resource identifier (URI) of the Web resource.</param>
/// <returns>A <see cref="T:System.Net.WebRequest" /> instance.</returns>
/// <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 <see langword="null" />.</exception>
/// <exception cref="T:System.UriFormatException">In the .NET for Windows Store apps or the Portable Class Library, catch the base class exception, <see cref="T:System.FormatException" />, instead.
///
///
///
///
/// The URI specified in <paramref name="uri" /> is not a valid URI.</exception>
// Token: 0x06000E12 RID: 3602
[Token(Token = "0x6000E12")]
[Address(Slot = "0")]
WebRequest Create(Uri uri);
}
}