21 references to UrlPrefix
Microsoft.AspNetCore.Server.HttpSys (21)
SourceBuildStubs.cs (21)
574/// Creates a <see cref="UrlPrefix"/> from the given string. 576/// <param name="prefix">The string that the <see cref="UrlPrefix"/> will be created from.</param> 577/// <returns>A new <see cref="UrlPrefix"/>.</returns> 578public static UrlPrefix Create(string prefix) => throw new PlatformNotSupportedException(); 581/// Creates a <see cref="UrlPrefix"/> from the given components. 587/// <returns>A new <see cref="UrlPrefix"/>.</returns> 588public static UrlPrefix Create(string scheme, string host, string port, string path) => throw new PlatformNotSupportedException(); 591/// Creates a <see cref="UrlPrefix"/> from the given components. 597/// <returns>A new <see cref="UrlPrefix"/>.</returns> 598public static UrlPrefix Create(string scheme, string host, int? portValue, string path) => throw new PlatformNotSupportedException(); 613public class UrlPrefixCollection : ICollection<UrlPrefix> 628/// Creates a <see cref="UrlPrefix"/> from the given string, and adds it to this collection. 630/// <param name="prefix">The string representing the <see cref="UrlPrefix"/> to add to this collection.</param> 636/// Adds a <see cref="UrlPrefix"/> to this collection. 639public void Add(UrlPrefix item) 649public bool Contains(UrlPrefix item) => false; 652public void CopyTo(UrlPrefix[] array, int arrayIndex) 660public bool Remove(UrlPrefix item) => false; 666public IEnumerator<UrlPrefix> GetEnumerator() => ((IEnumerable<UrlPrefix>)Array.Empty<UrlPrefix>()).GetEnumerator();