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>
591
public 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>
601
public 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>
611
public static
UrlPrefix
Create(string scheme, string host, int? portValue, string path) => throw new PlatformNotSupportedException();
626
public 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.
652
public void Add(
UrlPrefix
item)
662
public bool Contains(
UrlPrefix
item) => false;
665
public void CopyTo(
UrlPrefix
[] array, int arrayIndex)
673
public bool Remove(
UrlPrefix
item) => false;
679
public IEnumerator<
UrlPrefix
> GetEnumerator() => ((IEnumerable<
UrlPrefix
>)Array.Empty<
UrlPrefix
>()).GetEnumerator();