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>
578
public 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>
588
public 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>
598
public static
UrlPrefix
Create(string scheme, string host, int? portValue, string path) => throw new PlatformNotSupportedException();
613
public 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.
639
public void Add(
UrlPrefix
item)
649
public bool Contains(
UrlPrefix
item) => false;
652
public void CopyTo(
UrlPrefix
[] array, int arrayIndex)
660
public bool Remove(
UrlPrefix
item) => false;
666
public IEnumerator<
UrlPrefix
> GetEnumerator() => ((IEnumerable<
UrlPrefix
>)Array.Empty<
UrlPrefix
>()).GetEnumerator();