10 references to TrimStart
Microsoft.Extensions.Telemetry (2)
Http\HttpRouteFormatter.cs (1)
53
var httpPathAsSpan = httpPath.AsSpan().
TrimStart
(ForwardSlash);
Http\HttpRouteParser.cs (1)
47
httpPathAsSpan = httpPathAsSpan.
TrimStart
(ForwardSlash);
System.IO.Packaging (2)
System\IO\Packaging\ContentType.cs (2)
323
parameterAndValue = parameterAndValue.
TrimStart
(s_linearWhiteSpaceChars);
339
parameterAndValue = parameterAndValue.Slice(parameterStartIndex + parameterValueLength).
TrimStart
(s_linearWhiteSpaceChars);
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.Trim.cs (1)
714
=> span.
TrimStart
(trimChars).TrimEnd(trimChars);
System.Resources.Extensions (5)
System\Resources\Extensions\TypeNameComparer.cs (5)
70
ReadOnlySpan<char> typeSpan1 = assemblyQualifiedTypeName1.AsSpan().
TrimStart
(s_whiteSpaceChars);
71
ReadOnlySpan<char> typeSpan2 = assemblyQualifiedTypeName2.AsSpan().
TrimStart
(s_whiteSpaceChars);
80
typeSpan1 = typeSpan1.Length > type1.Length ? typeSpan1.Slice(type1.Length + 1).
TrimStart
(s_whiteSpaceChars) : ReadOnlySpan<char>.Empty;
81
typeSpan2 = typeSpan2.Length > type2.Length ? typeSpan2.Slice(type2.Length + 1).
TrimStart
(s_whiteSpaceChars) : ReadOnlySpan<char>.Empty;
123
ReadOnlySpan<char> typeSpan = assemblyQualifiedTypeName.AsSpan().
TrimStart
(s_whiteSpaceChars);