21 references to UrlPrefix
Microsoft.AspNetCore.Server.HttpSys (21)
SourceBuildStubs.cs (21)
587/// Creates a <see cref="UrlPrefix"/> from the given string. 589/// <param name="prefix">The string that the <see cref="UrlPrefix"/> will be created from.</param> 590/// <returns>A new <see cref="UrlPrefix"/>.</returns> 591public static UrlPrefix Create(string prefix) => throw new PlatformNotSupportedException(); 594/// Creates a <see cref="UrlPrefix"/> from the given components. 600/// <returns>A new <see cref="UrlPrefix"/>.</returns> 601public static UrlPrefix Create(string scheme, string host, string port, string path) => throw new PlatformNotSupportedException(); 604/// Creates a <see cref="UrlPrefix"/> from the given components. 610/// <returns>A new <see cref="UrlPrefix"/>.</returns> 611public static UrlPrefix Create(string scheme, string host, int? portValue, string path) => throw new PlatformNotSupportedException(); 626public class UrlPrefixCollection : ICollection<UrlPrefix> 641/// Creates a <see cref="UrlPrefix"/> from the given string, and adds it to this collection. 643/// <param name="prefix">The string representing the <see cref="UrlPrefix"/> to add to this collection.</param> 649/// Adds a <see cref="UrlPrefix"/> to this collection. 652public void Add(UrlPrefix item) 662public bool Contains(UrlPrefix item) => false; 665public void CopyTo(UrlPrefix[] array, int arrayIndex) 673public bool Remove(UrlPrefix item) => false; 679public IEnumerator<UrlPrefix> GetEnumerator() => ((IEnumerable<UrlPrefix>)Array.Empty<UrlPrefix>()).GetEnumerator();