| File: System\Net\IWebRequestCreate.cs | Web Access |
| Project: src\runtime\src\libraries\System.Net.Requests\src\System.Net.Requests.csproj (System.Net.Requests) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Net { /// <devdoc> /// <para> /// The <see cref='System.Net.IWebRequestCreate'/> interface is used by the <see cref='System.Net.WebRequest'/> /// class to create <see cref='System.Net.WebRequest'/> /// instances for a registered scheme. /// </para> /// </devdoc> public interface IWebRequestCreate { /// <devdoc> /// <para> /// Creates a <see cref='System.Net.WebRequest'/> /// instance. /// </para> /// </devdoc> WebRequest Create(Uri uri); } }