55 references to StringValues
Microsoft.AspNetCore.Components.Endpoints (1)
Microsoft.AspNetCore.Diagnostics.Middleware.Tests (1)
Microsoft.AspNetCore.HeaderParsing.Tests (29)
Microsoft.AspNetCore.Http (1)
Microsoft.AspNetCore.Http.Extensions (2)
Microsoft.AspNetCore.HttpsPolicy (1)
Microsoft.AspNetCore.OpenApi (1)
Microsoft.AspNetCore.OutputCaching (1)
Microsoft.AspNetCore.ResponseCaching (1)
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Microsoft.AspNetCore.StaticAssets (1)
Microsoft.AspNetCore.WebUtilities (1)
Microsoft.Extensions.Primitives (10)
StringValues.cs (10)
55return new StringValues(value);
485return new StringValues(value);
510return new StringValues(value);
580public static bool Equals(string? left, StringValues right) => Equals(new StringValues(left), right);
588public static bool Equals(StringValues left, string? right) => Equals(left, new StringValues(right));
595public bool Equals(string? other) => Equals(this, new StringValues(other));
621public static bool operator ==(StringValues left, string? right) => Equals(left, new StringValues(right));
629public static bool operator !=(StringValues left, string? right) => !Equals(left, new StringValues(right));
632public static bool operator ==(string? left, StringValues right) => Equals(new StringValues(left), right);
640public static bool operator !=(string? left, StringValues right) => !Equals(new StringValues(left), right);