Meziantou.Polyfill 1.0.156

Prefix Reserved
dotnet add package Meziantou.Polyfill --version 1.0.156
                    
NuGet\Install-Package Meziantou.Polyfill -Version 1.0.156
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Meziantou.Polyfill" Version="1.0.156">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Meziantou.Polyfill" Version="1.0.156" />
                    
Directory.Packages.props
<PackageReference Include="Meziantou.Polyfill">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Meziantou.Polyfill --version 1.0.156
                    
#r "nuget: Meziantou.Polyfill, 1.0.156"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Meziantou.Polyfill@1.0.156
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Meziantou.Polyfill&version=1.0.156
                    
Install as a Cake Addin
#tool nuget:?package=Meziantou.Polyfill&version=1.0.156
                    
Install as a Cake Tool

Meziantou.Polyfill

NuGet

Source Generator that adds polyfill methods and types so projects targeting older TFMs can compile with source-compatible APIs.

Performance is not a goal. If performance is important, target the latest version of .NET. The generated code can still be performant, but it is not fully optimized for all scenarios.

Read more about the project: Polyfills in .NET to ease multi-targeting

Installation

dotnet add package Meziantou.Polyfill

Then, you should see the generated types in the solution explorer

Generated files in the Visual Studio's Solution Explorer

Customization

By default, all needed polyfills are generated. You can configure which polyfills should be generated by editing the .csproj file and adding the following properties:

<PropertyGroup>
  
  
  
  <MeziantouPolyfill_IncludedPolyfills>T:Type1|T:Type2|M:Member1</MeziantouPolyfill_IncludedPolyfills>

  
  
  <MeziantouPolyfill_ExcludedPolyfills>M:System.Diagnostics.</MeziantouPolyfill_ExcludedPolyfills>

  
  <EmitCompilerGeneratedFiles>True</EmitCompilerGeneratedFiles>
  <CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)\GeneratedFiles</CompilerGeneratedFilesOutputPath>

  
  <MeziantouPolyfill_GenerateDebugFile>true</MeziantouPolyfill_GenerateDebugFile>
</PropertyGroup>

You can disable the [Microsoft.CodeAnalysis.EmbeddedAttribute] by defining the MEZIANTOU_POLYFILL_SKIP_MICROSOFT_CODEANALYSIS_EMBEDDEDATTRIBUTE symbol. Note that this may cause issues with InternalsVisibleTo.

<PropertyGroup>
  <DefineConstants>$(DefineConstants);MEZIANTOU_POLYFILL_SKIP_MICROSOFT_CODEANALYSIS_EMBEDDEDATTRIBUTE</DefineConstants>
</PropertyGroup>

Filtering Behavior

The filtering logic works as follows:

  1. By default (neither property set): All polyfills that are not already available in your target framework are generated
  2. MeziantouPolyfill_ExcludedPolyfills (opt-out/blocklist): Excludes polyfills whose XML documentation ID starts with any of the specified prefixes
  3. MeziantouPolyfill_IncludedPolyfills (opt-in/allowlist): When set, ONLY includes polyfills whose XML documentation ID starts with any of the specified prefixes
  4. Both properties set: Exclusions are applied first, then inclusions. A polyfill must match an inclusion filter AND not match any exclusion filter to be generated

Set MeziantouPolyfill_GenerateDebugFile to true to emit Debug.g.cs. This diagnostic file lists required type availability, each polyfill generation decision, and skip reasons such as already-available members, excluded filters, missing required types, or unmet conditional dependencies.

Supported polyfills

Dependency annotations use XML documentation IDs and indicate symbols that must be available in the target framework or generated by another polyfill.

Types (91)

  • System.Buffers.SearchValues (requires T:System.ReadOnlySpan`1)
  • System.Buffers.SearchValues<T> where T : System.IEquatable<T>?
  • System.Buffers.SequenceReader<T> where T : unmanaged, System.IEquatable<T> (requires T:System.ReadOnlyMemory`1, T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Buffers.SpanAction<T, in TArg> where TArg : allows ref struct (requires T:System.Span`1)
  • System.Collections.Generic.KeyValuePair
  • System.Collections.Generic.PriorityQueue<TElement, TPriority>
  • System.Collections.Generic.ReferenceEqualityComparer
  • System.Collections.ObjectModel.ReadOnlySet<T>
  • System.Diagnostics.CodeAnalysis.AllowNullAttribute
  • System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute
  • System.Diagnostics.CodeAnalysis.DisallowNullAttribute
  • System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute
  • System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute
  • System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute
  • System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes
  • System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute
  • System.Diagnostics.CodeAnalysis.ExperimentalAttribute
  • System.Diagnostics.CodeAnalysis.MaybeNullAttribute
  • System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute
  • System.Diagnostics.CodeAnalysis.MemberNotNullAttribute
  • System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute
  • System.Diagnostics.CodeAnalysis.NotNullAttribute
  • System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute
  • System.Diagnostics.CodeAnalysis.NotNullWhenAttribute
  • System.Diagnostics.CodeAnalysis.RequiresAssemblyFilesAttribute
  • System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute
  • System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute
  • System.Diagnostics.CodeAnalysis.SetsRequiredMembersAttribute
  • System.Diagnostics.CodeAnalysis.StringSyntaxAttribute
  • System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute
  • System.Diagnostics.CodeAnalysis.UnscopedRefAttribute
  • System.Diagnostics.StackTraceHiddenAttribute
  • System.Diagnostics.UnreachableException
  • System.HashCode
  • System.ITupleInternal (when any of T:System.ValueTuple, T:System.ValueTuple`1, T:System.ValueTuple`2, T:System.ValueTuple`3, T:System.ValueTuple`4, T:System.ValueTuple`5, T:System.ValueTuple`6, T:System.ValueTuple`7, T:System.ValueTuple`8 is generated)
  • System.Index
  • System.Net.Http.ReadOnlyMemoryContent (requires T:System.IAsyncDisposable, T:System.Memory`1, T:System.Net.Http.HttpContent, T:System.ReadOnlyMemory`1, T:System.ReadOnlySpan`1, T:System.Span`1, T:System.Threading.Tasks.ValueTask, T:System.Threading.Tasks.ValueTask`1)
  • System.Net.Mime.MediaTypeNames.Font
  • System.Net.Mime.MediaTypeNames.Multipart
  • System.Net.Mime.MediaTypeNames.Video
  • System.Range
  • System.Reflection.NullabilityInfo
  • System.Reflection.NullabilityInfoContext
  • System.Reflection.NullabilityState
  • System.Runtime.CompilerServices.AsyncMethodBuilderAttribute
  • System.Runtime.CompilerServices.CallerArgumentExpressionAttribute
  • System.Runtime.CompilerServices.CollectionBuilderAttribute
  • System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute
  • System.Runtime.CompilerServices.DefaultInterpolatedStringHandler (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Runtime.CompilerServices.DisableRuntimeMarshallingAttribute
  • System.Runtime.CompilerServices.IUnion
  • System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute
  • System.Runtime.CompilerServices.InterpolatedStringHandlerAttribute
  • System.Runtime.CompilerServices.IsExternalInit
  • System.Runtime.CompilerServices.ModuleInitializerAttribute
  • System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute
  • System.Runtime.CompilerServices.RequiredMemberAttribute
  • System.Runtime.CompilerServices.SkipLocalsInitAttribute
  • System.Runtime.CompilerServices.TupleElementNamesAttribute
  • System.Runtime.CompilerServices.UnionAttribute
  • System.Runtime.InteropServices.ExtendedLayoutAttribute
  • System.Runtime.InteropServices.ExtendedLayoutKind
  • System.Runtime.InteropServices.SuppressGCTransitionAttribute
  • System.Runtime.InteropServices.UnmanagedCallersOnlyAttribute
  • System.Runtime.Versioning.ObsoletedOSPlatformAttribute
  • System.Runtime.Versioning.RequiresPreviewFeaturesAttribute
  • System.Runtime.Versioning.SupportedOSPlatformAttribute
  • System.Runtime.Versioning.SupportedOSPlatformGuardAttribute
  • System.Runtime.Versioning.TargetPlatformAttribute
  • System.Runtime.Versioning.UnsupportedOSPlatformAttribute
  • System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute
  • System.Security.Cryptography.CryptographicOperations (when M:System.Security.Cryptography.CryptographicOperations.FixedTimeEquals(System.ReadOnlySpan{System.Byte},System.Byte) is generated)
  • System.Text.RegularExpressions.Regex.ValueMatchEnumerator (when any of M:System.Text.RegularExpressions.Regex.EnumerateMatches(System.ReadOnlySpan{System.Char}), M:System.Text.RegularExpressions.Regex.EnumerateMatches(System.ReadOnlySpan{System.Char},System.Int32), M:System.Text.RegularExpressions.Regex.EnumerateMatches(System.ReadOnlySpan{System.Char},System.String), M:System.Text.RegularExpressions.Regex.EnumerateMatches(System.ReadOnlySpan{System.Char},System.String,System.Text.RegularExpressions.RegexOptions), M:System.Text.RegularExpressions.Regex.EnumerateMatches(System.ReadOnlySpan{System.Char},System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan) is generated)
  • System.Text.RegularExpressions.Regex.ValueSplitEnumerator (when any of M:System.Text.RegularExpressions.Regex.EnumerateSplits(System.ReadOnlySpan{System.Char}), M:System.Text.RegularExpressions.Regex.EnumerateSplits(System.ReadOnlySpan{System.Char},System.Int32), M:System.Text.RegularExpressions.Regex.EnumerateSplits(System.ReadOnlySpan{System.Char},System.Int32,System.Int32), M:System.Text.RegularExpressions.Regex.EnumerateSplits(System.ReadOnlySpan{System.Char},System.String), M:System.Text.RegularExpressions.Regex.EnumerateSplits(System.ReadOnlySpan{System.Char},System.String,System.Text.RegularExpressions.RegexOptions), M:System.Text.RegularExpressions.Regex.EnumerateSplits(System.ReadOnlySpan{System.Char},System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan) is generated)
  • System.Text.RegularExpressions.ValueMatch (when any of M:System.Text.RegularExpressions.Regex.EnumerateMatches(System.ReadOnlySpan{System.Char}), M:System.Text.RegularExpressions.Regex.EnumerateMatches(System.ReadOnlySpan{System.Char},System.Int32), M:System.Text.RegularExpressions.Regex.EnumerateMatches(System.ReadOnlySpan{System.Char},System.String), M:System.Text.RegularExpressions.Regex.EnumerateMatches(System.ReadOnlySpan{System.Char},System.String,System.Text.RegularExpressions.RegexOptions), M:System.Text.RegularExpressions.Regex.EnumerateMatches(System.ReadOnlySpan{System.Char},System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan) is generated)
  • System.Text.RunePosition (requires T:System.ReadOnlySpan`1, T:System.Text.Rune)
  • System.Text.StringBuilderRuneEnumerator (requires T:System.Text.Rune)
  • System.Threading.ITimer (requires T:System.IAsyncDisposable)
  • System.Threading.Lock
  • System.Threading.PeriodicTimer (requires T:System.Threading.ITimer, T:System.Threading.Tasks.Sources.IValueTaskSource`1, T:System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags, T:System.Threading.Tasks.Sources.ValueTaskSourceStatus, T:System.Threading.Tasks.ValueTask`1, T:System.TimeProvider)
  • System.Threading.Tasks.TaskToAsyncResult
  • System.TimeProvider (requires T:System.IAsyncDisposable, T:System.Threading.ITimer, T:System.Threading.Tasks.ValueTask)
  • System.ValueTuple
  • System.ValueTuple<T1>
  • System.ValueTuple<T1, T2>
  • System.ValueTuple<T1, T2, T3>
  • System.ValueTuple<T1, T2, T3, T4>
  • System.ValueTuple<T1, T2, T3, T4, T5>
  • System.ValueTuple<T1, T2, T3, T4, T5, T6>
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest> where TRest : struct

Methods (1053)

  • System.ArgumentException.ThrowIfNullOrEmpty(System.String? argument, [System.String? paramName = null])
  • System.ArgumentException.ThrowIfNullOrWhiteSpace(System.String? argument, [System.String? paramName = null])
  • System.ArgumentNullException.ThrowIfNull(System.Object? argument, [System.String? paramName = null])
  • System.ArgumentNullException.ThrowIfNull(System.Void* argument, [System.String? paramName = null])
  • System.ArgumentOutOfRangeException.ThrowIfEqual<T>(T value, T other, [System.String? paramName = null])
  • System.ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual<T>(T value, T other, [System.String? paramName = null]) where T : System.IComparable<T>
  • System.ArgumentOutOfRangeException.ThrowIfGreaterThan<T>(T value, T other, [System.String? paramName = null]) where T : System.IComparable<T>
  • System.ArgumentOutOfRangeException.ThrowIfLessThanOrEqual<T>(T value, T other, [System.String? paramName = null]) where T : System.IComparable<T>
  • System.ArgumentOutOfRangeException.ThrowIfLessThan<T>(T value, T other, [System.String? paramName = null]) where T : System.IComparable<T>
  • System.ArgumentOutOfRangeException.ThrowIfNegativeOrZero<T>(T value, [System.String? paramName = null]) where T : System.Numerics.INumberBase<T>
  • System.ArgumentOutOfRangeException.ThrowIfNegative<T>(T value, [System.String? paramName = null]) where T : System.Numerics.INumberBase<T>
  • System.ArgumentOutOfRangeException.ThrowIfNotEqual<T>(T value, T other, [System.String? paramName = null])
  • System.ArgumentOutOfRangeException.ThrowIfZero<T>(T value, [System.String? paramName = null]) where T : System.Numerics.INumberBase<T>
  • System.Array.Fill<T>(T[] array, T value)
  • System.Array.Fill<T>(T[] array, T value, System.Int32 startIndex, System.Int32 count)
  • System.ArraySegment<T>.CopyTo(System.ArraySegment<T> destination)
  • System.ArraySegment<T>.CopyTo(T[] destination)
  • System.ArraySegment<T>.CopyTo(T[] destination, System.Int32 destinationIndex)
  • System.ArraySegment<T>.GetEnumerator()
  • System.BitConverter.DoubleToUInt64Bits(System.Double value)
  • System.BitConverter.ToInt16(System.ReadOnlySpan<System.Byte> value) (requires T:System.ReadOnlySpan`1)
  • System.BitConverter.ToInt32(System.ReadOnlySpan<System.Byte> value) (requires T:System.ReadOnlySpan`1)
  • System.BitConverter.ToUInt16(System.ReadOnlySpan<System.Byte> value) (requires T:System.ReadOnlySpan`1)
  • System.BitConverter.ToUInt32(System.ReadOnlySpan<System.Byte> value) (requires T:System.ReadOnlySpan`1)
  • System.BitConverter.ToUInt64(System.ReadOnlySpan<System.Byte> value) (requires T:System.ReadOnlySpan`1)
  • System.BitConverter.UInt32BitsToSingle(System.UInt32 value)
  • System.BitConverter.UInt64BitsToDouble(System.UInt64 value)
  • System.Boolean.TryFormat(System.Span<System.Char> destination, out System.Int32 charsWritten) (requires T:System.Span`1)
  • System.Buffers.Binary.BinaryPrimitives.ReadDoubleBigEndian(System.ReadOnlySpan<System.Byte> source) (requires T:System.ReadOnlySpan`1)
  • System.Buffers.Binary.BinaryPrimitives.ReadDoubleLittleEndian(System.ReadOnlySpan<System.Byte> source) (requires T:System.ReadOnlySpan`1)
  • System.Buffers.Binary.BinaryPrimitives.ReadSingleBigEndian(System.ReadOnlySpan<System.Byte> source) (requires T:System.ReadOnlySpan`1)
  • System.Buffers.Binary.BinaryPrimitives.ReadSingleLittleEndian(System.ReadOnlySpan<System.Byte> source) (requires T:System.ReadOnlySpan`1)
  • System.Buffers.Binary.BinaryPrimitives.TryReadDoubleBigEndian(System.ReadOnlySpan<System.Byte> source, out System.Double value) (requires T:System.ReadOnlySpan`1)
  • System.Buffers.Binary.BinaryPrimitives.TryReadDoubleLittleEndian(System.ReadOnlySpan<System.Byte> source, out System.Double value) (requires T:System.ReadOnlySpan`1)
  • System.Buffers.Binary.BinaryPrimitives.TryReadSingleBigEndian(System.ReadOnlySpan<System.Byte> source, out System.Single value) (requires T:System.ReadOnlySpan`1)
  • System.Buffers.Binary.BinaryPrimitives.TryReadSingleLittleEndian(System.ReadOnlySpan<System.Byte> source, out System.Single value) (requires T:System.ReadOnlySpan`1)
  • System.Buffers.Binary.BinaryPrimitives.TryWriteDoubleBigEndian(System.Span<System.Byte> destination, System.Double value) (requires T:System.Span`1)
  • System.Buffers.Binary.BinaryPrimitives.TryWriteDoubleLittleEndian(System.Span<System.Byte> destination, System.Double value) (requires T:System.Span`1)
  • System.Buffers.Binary.BinaryPrimitives.TryWriteSingleBigEndian(System.Span<System.Byte> destination, System.Single value) (requires T:System.Span`1)
  • System.Buffers.Binary.BinaryPrimitives.TryWriteSingleLittleEndian(System.Span<System.Byte> destination, System.Single value) (requires T:System.Span`1)
  • System.Buffers.Binary.BinaryPrimitives.WriteDoubleBigEndian(System.Span<System.Byte> destination, System.Double value) (requires T:System.Span`1)
  • System.Buffers.Binary.BinaryPrimitives.WriteDoubleLittleEndian(System.Span<System.Byte> destination, System.Double value) (requires T:System.Span`1)
  • System.Buffers.Binary.BinaryPrimitives.WriteSingleBigEndian(System.Span<System.Byte> destination, System.Single value) (requires T:System.Span`1)
  • System.Buffers.Binary.BinaryPrimitives.WriteSingleLittleEndian(System.Span<System.Byte> destination, System.Single value) (requires T:System.Span`1)
  • System.Buffers.SearchValues.Create(System.ReadOnlySpan<System.Byte> values) (requires T:System.ReadOnlySpan`1)
  • System.Buffers.SearchValues.Create(System.ReadOnlySpan<System.Char> values) (requires T:System.ReadOnlySpan`1)
  • System.Buffers.SearchValues.Create(System.ReadOnlySpan<System.String> values, System.StringComparison comparisonType) (requires T:System.ReadOnlySpan`1)
  • System.Buffers.SearchValues.Create<T>(System.ReadOnlySpan<T> values) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1)
  • System.Buffers.SearchValues<T>.Contains(T value)
  • System.Buffers.SequenceReader<T>.Advance(System.Int32 count) (requires T:System.ReadOnlyMemory`1, T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Buffers.SequenceReader<T>.Advance(System.Int64 count) (requires T:System.ReadOnlyMemory`1, T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Buffers.SequenceReader<T>.Rewind(System.Int64 count) (requires T:System.ReadOnlyMemory`1, T:System.ReadOnlySpan`1, T:System.Span`1)
  • readonly System.Buffers.SequenceReader<T>.TryCopyTo(System.Span<T> destination) (requires T:System.ReadOnlyMemory`1, T:System.ReadOnlySpan`1, T:System.Span`1)
  • readonly System.Buffers.SequenceReader<T>.TryPeek(System.Int64 offset, out T value) (requires T:System.ReadOnlyMemory`1, T:System.ReadOnlySpan`1, T:System.Span`1)
  • readonly System.Buffers.SequenceReader<T>.TryPeek(out T value) (requires T:System.ReadOnlyMemory`1, T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Buffers.SequenceReader<T>.TryRead(out T value) (requires T:System.ReadOnlyMemory`1, T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Byte.Parse(System.ReadOnlySpan<System.Byte> utf8Text, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.Byte.Parse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.Byte.Parse(System.ReadOnlySpan<System.Char> s, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.Byte.Parse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.Byte.TryFormat(System.Span<System.Byte> utf8Destination, out System.Int32 bytesWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Byte.TryFormat(System.Span<System.Char> destination, out System.Int32 charsWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Byte.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, out System.Byte result) (requires T:System.ReadOnlySpan`1)
  • System.Byte.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.Byte result) (requires T:System.ReadOnlySpan`1)
  • System.Byte.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider, out System.Byte result) (requires T:System.ReadOnlySpan`1)
  • System.Byte.TryParse(System.ReadOnlySpan<System.Char> s, out System.Byte result) (requires T:System.ReadOnlySpan`1)
  • System.Byte.TryParse(System.ReadOnlySpan<System.Char> s, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.Byte result) (requires T:System.ReadOnlySpan`1)
  • System.Byte.TryParse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider, out System.Byte result) (requires T:System.ReadOnlySpan`1)
  • System.Byte.TryParse(System.String? s, System.IFormatProvider? provider, out System.Byte result)
  • System.Char.Equals(System.Char other, System.StringComparison comparisonType)
  • System.Char.IsAscii(System.Char c)
  • System.Char.IsAsciiDigit(System.Char c)
  • System.Char.IsAsciiHexDigit(System.Char c)
  • System.Char.IsAsciiHexDigitLower(System.Char c)
  • System.Char.IsAsciiHexDigitUpper(System.Char c)
  • System.Char.IsAsciiLetter(System.Char c)
  • System.Char.IsAsciiLetterLower(System.Char c)
  • System.Char.IsAsciiLetterOrDigit(System.Char c)
  • System.Char.IsAsciiLetterUpper(System.Char c)
  • System.Char.IsBetween(System.Char c, System.Char minInclusive, System.Char maxInclusive)
  • System.Collections.BitArray.PopCount()
  • System.Collections.Concurrent.ConcurrentBag<T>.Clear()
  • System.Collections.Concurrent.ConcurrentDictionary<TKey, TValue>.GetOrAdd<TArg>(TKey key, System.Func<TKey, TArg, TValue> valueFactory, TArg factoryArgument) where TArg : allows ref struct
  • System.Collections.Concurrent.ConcurrentQueue<T>.Clear()
  • System.Collections.DictionaryEntry.Deconstruct(out System.Object key, out System.Object? value)
  • System.Collections.Generic.CollectionExtensions.AddRange<T>(this System.Collections.Generic.List<T> list, params System.ReadOnlySpan<T> source) (requires T:System.ReadOnlySpan`1)
  • System.Collections.Generic.CollectionExtensions.AsReadOnly<T>(this System.Collections.Generic.IList<T> list)
  • System.Collections.Generic.CollectionExtensions.AsReadOnly<T>(this System.Collections.Generic.ISet<T> set)
  • System.Collections.Generic.CollectionExtensions.AsReadOnly<TKey, TValue>(this System.Collections.Generic.IDictionary<TKey, TValue> dictionary) where TKey : notnull
  • System.Collections.Generic.CollectionExtensions.CopyTo<T>(this System.Collections.Generic.List<T> list, System.Span<T> destination) (requires T:System.Span`1)
  • System.Collections.Generic.CollectionExtensions.GetValueOrDefault<TKey, TValue>(this System.Collections.Generic.IReadOnlyDictionary<TKey, TValue> dictionary, TKey key)
  • System.Collections.Generic.CollectionExtensions.GetValueOrDefault<TKey, TValue>(this System.Collections.Generic.IReadOnlyDictionary<TKey, TValue> dictionary, TKey key, TValue defaultValue)
  • System.Collections.Generic.CollectionExtensions.InsertRange<T>(this System.Collections.Generic.List<T> list, System.Int32 index, params System.ReadOnlySpan<T> source) (requires T:System.ReadOnlySpan`1)
  • System.Collections.Generic.CollectionExtensions.Remove<TKey, TValue>(this System.Collections.Generic.IDictionary<TKey, TValue> dictionary, TKey key, out TValue value)
  • System.Collections.Generic.CollectionExtensions.TryAdd<TKey, TValue>(this System.Collections.Generic.IDictionary<TKey, TValue> dictionary, TKey key, TValue value)
  • System.Collections.Generic.Dictionary<TKey, TValue>.Remove(TKey key, out TValue value)
  • System.Collections.Generic.Dictionary<TKey, TValue>.TrimExcess()
  • System.Collections.Generic.Dictionary<TKey, TValue>.TrimExcess(System.Int32 capacity)
  • System.Collections.Generic.Dictionary<TKey, TValue>.TryAdd(TKey key, TValue value)
  • System.Collections.Generic.EqualityComparer<T>.Create(System.Func<T?, T?, System.Boolean> equals, [System.Func<T, System.Int32>? getHashCode = null])
  • System.Collections.Generic.EqualityComparer<T>.Create<TKey>(System.Func<T?, TKey?> keySelector, [System.Collections.Generic.IEqualityComparer<TKey>? keyComparer = null])
  • System.Collections.Generic.HashSet<T>.TrimExcess(System.Int32 capacity)
  • System.Collections.Generic.KeyValuePair.Create<TKey, TValue>(TKey key, TValue value)
  • System.Collections.Generic.KeyValuePair<TKey, TValue>.Deconstruct(out TKey key, out TValue value)
  • System.Collections.Generic.List<T>.Slice(System.Int32 start, System.Int32 length)
  • System.Collections.Generic.PriorityQueue<TElement, TPriority>.Clear()
  • System.Collections.Generic.PriorityQueue<TElement, TPriority>.DequeueEnqueue(TElement element, TPriority priority)
  • System.Collections.Generic.PriorityQueue<TElement, TPriority>.Dequeue()
  • System.Collections.Generic.PriorityQueue<TElement, TPriority>.Enqueue(TElement element, TPriority priority)
  • System.Collections.Generic.PriorityQueue<TElement, TPriority>.EnqueueDequeue(TElement element, TPriority priority)
  • System.Collections.Generic.PriorityQueue<TElement, TPriority>.EnqueueRange(System.Collections.Generic.IEnumerable<System.ValueTuple<TElement, TPriority>> items)
  • System.Collections.Generic.PriorityQueue<TElement, TPriority>.EnqueueRange(System.Collections.Generic.IEnumerable<TElement> elements, TPriority priority)
  • System.Collections.Generic.PriorityQueue<TElement, TPriority>.EnsureCapacity(System.Int32 capacity)
  • System.Collections.Generic.PriorityQueue<TElement, TPriority>.Peek()
  • System.Collections.Generic.PriorityQueue<TElement, TPriority>.Remove(TElement element, out TElement removedElement, out TPriority priority, [System.Collections.Generic.IEqualityComparer<TElement>? equalityComparer = null])
  • System.Collections.Generic.PriorityQueue<TElement, TPriority>.TrimExcess()
  • System.Collections.Generic.PriorityQueue<TElement, TPriority>.TryDequeue(out TElement element, out TPriority priority)
  • System.Collections.Generic.PriorityQueue<TElement, TPriority>.TryPeek(out TElement element, out TPriority priority)
  • System.Collections.Generic.Queue<T>.TrimExcess(System.Int32 capacity)
  • System.Collections.Generic.Queue<T>.TryDequeue(out T result)
  • System.Collections.Generic.ReferenceEqualityComparer.Equals(System.Object? x, System.Object? y)
  • System.Collections.Generic.ReferenceEqualityComparer.GetHashCode(System.Object? obj)
  • System.Collections.Generic.SortedList<TKey, TValue>.GetKeyAtIndex(System.Int32 index)
  • System.Collections.Generic.SortedList<TKey, TValue>.GetValueAtIndex(System.Int32 index)
  • System.Collections.Generic.Stack<T>.TryPeek(out T result)
  • System.Collections.Generic.Stack<T>.TryPop(out T result)
  • System.Collections.Immutable.ImmutableArray<T>.AsSpan() (requires T:System.Collections.Immutable.ImmutableArray`1, T:System.ReadOnlySpan`1)
  • System.Collections.Immutable.ImmutableArray<T>.AsSpan(System.Int32 start, System.Int32 length) (requires T:System.Collections.Immutable.ImmutableArray`1, T:System.ReadOnlySpan`1)
  • System.Collections.Immutable.ImmutableArray<T>.AsSpan(System.Range range) (requires T:System.Collections.Immutable.ImmutableArray`1, T:System.ReadOnlySpan`1)
  • System.Collections.ObjectModel.ReadOnlySet<T>.Contains(T item)
  • System.Collections.ObjectModel.ReadOnlySet<T>.CopyTo(T[] array, System.Int32 arrayIndex)
  • System.Collections.ObjectModel.ReadOnlySet<T>.GetEnumerator()
  • System.Collections.ObjectModel.ReadOnlySet<T>.IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other)
  • System.Collections.ObjectModel.ReadOnlySet<T>.IsProperSupersetOf(System.Collections.Generic.IEnumerable<T> other)
  • System.Collections.ObjectModel.ReadOnlySet<T>.IsSubsetOf(System.Collections.Generic.IEnumerable<T> other)
  • System.Collections.ObjectModel.ReadOnlySet<T>.IsSupersetOf(System.Collections.Generic.IEnumerable<T> other)
  • System.Collections.ObjectModel.ReadOnlySet<T>.Overlaps(System.Collections.Generic.IEnumerable<T> other)
  • System.Collections.ObjectModel.ReadOnlySet<T>.SetEquals(System.Collections.Generic.IEnumerable<T> other)
  • System.Console.OpenStandardErrorHandle()
  • System.Console.OpenStandardInputHandle()
  • System.Console.OpenStandardOutputHandle()
  • System.Convert.FromHexString(System.ReadOnlySpan<System.Byte> utf8Source) (requires T:System.ReadOnlySpan`1)
  • System.Convert.FromHexString(System.ReadOnlySpan<System.Byte> utf8Source, System.Span<System.Byte> destination, out System.Int32 bytesConsumed, out System.Int32 bytesWritten) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Convert.FromHexString(System.ReadOnlySpan<System.Char> chars) (requires T:System.ReadOnlySpan`1)
  • System.Convert.FromHexString(System.ReadOnlySpan<System.Char> source, System.Span<System.Byte> destination, out System.Int32 charsConsumed, out System.Int32 bytesWritten) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Convert.FromHexString(System.String s)
  • System.Convert.FromHexString(System.String source, System.Span<System.Byte> destination, out System.Int32 charsConsumed, out System.Int32 bytesWritten) (requires T:System.Span`1)
  • System.Convert.ToBase64String(System.ReadOnlySpan<System.Byte> bytes, [System.Base64FormattingOptions options = System.Base64FormattingOptions.None]) (requires T:System.ReadOnlySpan`1)
  • System.Convert.ToHexString(System.Byte[] inArray)
  • System.Convert.ToHexString(System.Byte[] inArray, System.Int32 offset, System.Int32 length)
  • System.Convert.ToHexString(System.ReadOnlySpan<System.Byte> bytes) (requires T:System.ReadOnlySpan`1)
  • System.Convert.ToHexStringLower(System.Byte[] inArray)
  • System.Convert.ToHexStringLower(System.Byte[] inArray, System.Int32 offset, System.Int32 length)
  • System.Convert.ToHexStringLower(System.ReadOnlySpan<System.Byte> bytes) (requires T:System.ReadOnlySpan`1)
  • System.Convert.TryFromBase64Chars(System.ReadOnlySpan<System.Char> chars, System.Span<System.Byte> bytes, out System.Int32 bytesWritten) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Convert.TryFromBase64String(System.String s, System.Span<System.Byte> bytes, out System.Int32 bytesWritten) (requires T:System.Span`1)
  • System.Convert.TryToBase64Chars(System.ReadOnlySpan<System.Byte> bytes, System.Span<System.Char> chars, out System.Int32 charsWritten, [System.Base64FormattingOptions options = System.Base64FormattingOptions.None]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Convert.TryToHexString(System.ReadOnlySpan<System.Byte> source, System.Span<System.Byte> utf8Destination, out System.Int32 bytesWritten) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Convert.TryToHexString(System.ReadOnlySpan<System.Byte> source, System.Span<System.Char> destination, out System.Int32 charsWritten) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Convert.TryToHexStringLower(System.ReadOnlySpan<System.Byte> source, System.Span<System.Byte> utf8Destination, out System.Int32 bytesWritten) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Convert.TryToHexStringLower(System.ReadOnlySpan<System.Byte> source, System.Span<System.Char> destination, out System.Int32 charsWritten) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.DateOnly.Deconstruct(out System.Int32 year, out System.Int32 month, out System.Int32 day) (requires T:System.DateOnly)
  • System.DateOnly.TryFormat(System.Span<System.Byte> utf8Destination, out System.Int32 bytesWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.DateOnly, T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.DateOnly.TryFormat(System.Span<System.Char> destination, out System.Int32 charsWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.DateOnly, T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.DateTime.AddMicroseconds(System.Double value)
  • System.DateTime.Deconstruct(out System.DateOnly date, out System.TimeOnly time) (requires T:System.DateOnly, T:System.TimeOnly)
  • System.DateTime.Deconstruct(out System.Int32 year, out System.Int32 month, out System.Int32 day)
  • System.DateTime.TryFormat(System.Span<System.Byte> utf8Destination, out System.Int32 bytesWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.DateTime.TryFormat(System.Span<System.Char> destination, out System.Int32 charsWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.DateTime.TryParse(System.ReadOnlySpan<System.Char> s, out System.DateTime result) (requires T:System.ReadOnlySpan`1)
  • System.DateTime.TryParse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider, out System.DateTime result) (requires T:System.ReadOnlySpan`1)
  • System.DateTime.TryParse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider, System.Globalization.DateTimeStyles styles, out System.DateTime result) (requires T:System.ReadOnlySpan`1)
  • System.DateTime.TryParse(System.String? s, System.IFormatProvider? provider, out System.DateTime result)
  • System.DateTime.TryParseExact(System.ReadOnlySpan<System.Char> s, System.ReadOnlySpan<System.Char> format, System.IFormatProvider? provider, System.Globalization.DateTimeStyles style, out System.DateTime result) (requires T:System.ReadOnlySpan`1)
  • System.DateTimeOffset.AddMicroseconds(System.Double microseconds)
  • System.DateTimeOffset.Deconstruct(out System.DateOnly date, out System.TimeOnly time, out System.TimeSpan offset) (requires T:System.DateOnly, T:System.TimeOnly)
  • System.DateTimeOffset.TryFormat(System.Span<System.Byte> utf8Destination, out System.Int32 bytesWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? formatProvider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.DateTimeOffset.TryFormat(System.Span<System.Char> destination, out System.Int32 charsWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? formatProvider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.DateTimeOffset.TryParse(System.ReadOnlySpan<System.Char> input, out System.DateTimeOffset result) (requires T:System.ReadOnlySpan`1)
  • System.DateTimeOffset.TryParse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider, out System.DateTimeOffset result) (requires T:System.ReadOnlySpan`1)
  • System.DateTimeOffset.TryParse(System.ReadOnlySpan<System.Char> input, System.IFormatProvider? formatProvider, System.Globalization.DateTimeStyles styles, out System.DateTimeOffset result) (requires T:System.ReadOnlySpan`1)
  • System.DateTimeOffset.TryParse(System.String? s, System.IFormatProvider? provider, out System.DateTimeOffset result)
  • System.DateTimeOffset.TryParseExact(System.ReadOnlySpan<System.Char> input, System.ReadOnlySpan<System.Char> format, System.IFormatProvider? formatProvider, System.Globalization.DateTimeStyles styles, out System.DateTimeOffset result) (requires T:System.ReadOnlySpan`1)
  • System.Decimal.Parse(System.ReadOnlySpan<System.Byte> utf8Text, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Number], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.Decimal.Parse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.Decimal.Parse(System.ReadOnlySpan<System.Char> s, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Number], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.Decimal.Parse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.Decimal.TryFormat(System.Span<System.Byte> utf8Destination, out System.Int32 bytesWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Decimal.TryFormat(System.Span<System.Char> destination, out System.Int32 charsWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Decimal.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, out System.Decimal result) (requires T:System.ReadOnlySpan`1)
  • System.Decimal.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.Decimal result) (requires T:System.ReadOnlySpan`1)
  • System.Decimal.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider, out System.Decimal result) (requires T:System.ReadOnlySpan`1)
  • System.Decimal.TryParse(System.ReadOnlySpan<System.Char> s, out System.Decimal result) (requires T:System.ReadOnlySpan`1)
  • System.Decimal.TryParse(System.ReadOnlySpan<System.Char> s, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.Decimal result) (requires T:System.ReadOnlySpan`1)
  • System.Decimal.TryParse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider, out System.Decimal result) (requires T:System.ReadOnlySpan`1)
  • System.Decimal.TryParse(System.String? s, System.IFormatProvider? provider, out System.Decimal result)
  • System.Delegate.EnumerateInvocationList<TDelegate>(TDelegate? d) where TDelegate : System.Delegate
  • System.Diagnostics.Process.WaitForExitAsync([System.Threading.CancellationToken cancellationToken = default])
  • System.Diagnostics.Stopwatch.GetElapsedTime(System.Int64 startingTimestamp)
  • System.Diagnostics.Stopwatch.GetElapsedTime(System.Int64 startingTimestamp, System.Int64 endingTimestamp)
  • System.Double.Parse(System.ReadOnlySpan<System.Byte> utf8Text, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.AllowThousands | System.Globalization.NumberStyles.Float], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.Double.Parse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.Double.Parse(System.ReadOnlySpan<System.Char> s, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.AllowThousands | System.Globalization.NumberStyles.Float], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.Double.Parse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.Double.TryFormat(System.Span<System.Byte> utf8Destination, out System.Int32 bytesWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Double.TryFormat(System.Span<System.Char> destination, out System.Int32 charsWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Double.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, out System.Double result) (requires T:System.ReadOnlySpan`1)
  • System.Double.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.Double result) (requires T:System.ReadOnlySpan`1)
  • System.Double.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider, out System.Double result) (requires T:System.ReadOnlySpan`1)
  • System.Double.TryParse(System.ReadOnlySpan<System.Char> s, out System.Double result) (requires T:System.ReadOnlySpan`1)
  • System.Double.TryParse(System.ReadOnlySpan<System.Char> s, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.Double result) (requires T:System.ReadOnlySpan`1)
  • System.Double.TryParse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider, out System.Double result) (requires T:System.ReadOnlySpan`1)
  • System.Enum.GetNames<TEnum>() where TEnum : struct, System.Enum
  • System.Enum.GetValues<TEnum>() where TEnum : struct, System.Enum
  • System.Enum.IsDefined<TEnum>(TEnum value) where TEnum : struct, System.Enum
  • System.Enum.Parse<TEnum>(System.ReadOnlySpan<System.Char> value) where TEnum : struct (requires T:System.ReadOnlySpan`1)
  • System.Enum.Parse<TEnum>(System.ReadOnlySpan<System.Char> value, System.Boolean ignoreCase) where TEnum : struct (requires T:System.ReadOnlySpan`1)
  • System.Enum.Parse<TEnum>(System.String value) where TEnum : struct
  • System.Enum.Parse<TEnum>(System.String value, System.Boolean ignoreCase) where TEnum : struct
  • System.Enum.TryParse(System.Type enumType, System.ReadOnlySpan<System.Char> value, System.Boolean ignoreCase, out System.Object? result) (requires T:System.ReadOnlySpan`1)
  • System.Enum.TryParse(System.Type enumType, System.ReadOnlySpan<System.Char> value, out System.Object? result) (requires T:System.ReadOnlySpan`1)
  • System.Enum.TryParse(System.Type enumType, System.String? value, System.Boolean ignoreCase, out System.Object? result)
  • System.Enum.TryParse(System.Type enumType, System.String? value, out System.Object? result)
  • System.Enum.TryParse<TEnum>(System.ReadOnlySpan<System.Char> value, System.Boolean ignoreCase, out TEnum result) where TEnum : struct (requires T:System.ReadOnlySpan`1)
  • System.Enum.TryParse<TEnum>(System.ReadOnlySpan<System.Char> value, out TEnum result) where TEnum : struct (requires T:System.ReadOnlySpan`1)
  • System.Enum.TryParse<TEnum>(System.String? value, System.Boolean ignoreCase, out TEnum result) where TEnum : struct
  • System.Enum.TryParse<TEnum>(System.String? value, out TEnum result) where TEnum : struct
  • System.GC.AllocateUninitializedArray<T>(System.Int32 length, [System.Boolean pinned = false])
  • System.Globalization.TextInfo.ToLower(System.Text.Rune value) (requires T:System.Text.Rune)
  • System.Globalization.TextInfo.ToUpper(System.Text.Rune value) (requires T:System.Text.Rune)
  • System.Guid.CreateVersion7() (when M:System.Guid.CreateVersion7(System.DateTimeOffset) is generated)
  • System.Guid.CreateVersion7(System.DateTimeOffset timestamp)
  • System.Guid.Parse(System.ReadOnlySpan<System.Byte> utf8Text) (requires T:System.ReadOnlySpan`1)
  • System.Guid.TryFormat(System.Span<System.Byte> utf8Destination, out System.Int32 bytesWritten, [System.ReadOnlySpan<System.Char> format = default]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Guid.TryFormat(System.Span<System.Char> destination, out System.Int32 charsWritten, [System.ReadOnlySpan<System.Char> format = default]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Guid.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, out System.Guid result) (requires T:System.ReadOnlySpan`1)
  • System.Guid.TryParse(System.ReadOnlySpan<System.Char> input, out System.Guid result) (requires T:System.ReadOnlySpan`1)
  • System.Guid.TryParse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider, out System.Guid result) (requires T:System.ReadOnlySpan`1)
  • System.Guid.TryParse(System.String? s, System.IFormatProvider? provider, out System.Guid result)
  • System.Guid.TryParseExact(System.ReadOnlySpan<System.Char> input, System.ReadOnlySpan<System.Char> format, out System.Guid result) (requires T:System.ReadOnlySpan`1)
  • System.HashCode.Add<T>(T value)
  • System.HashCode.Add<T>(T value, System.Collections.Generic.IEqualityComparer<T>? comparer)
  • System.HashCode.Combine<T1>(T1 value1)
  • System.HashCode.Combine<T1, T2>(T1 value1, T2 value2)
  • System.HashCode.Combine<T1, T2, T3>(T1 value1, T2 value2, T3 value3)
  • System.HashCode.Combine<T1, T2, T3, T4>(T1 value1, T2 value2, T3 value3, T4 value4)
  • System.HashCode.Combine<T1, T2, T3, T4, T5>(T1 value1, T2 value2, T3 value3, T4 value4, T5 value5)
  • System.HashCode.Combine<T1, T2, T3, T4, T5, T6>(T1 value1, T2 value2, T3 value3, T4 value4, T5 value5, T6 value6)
  • System.HashCode.Combine<T1, T2, T3, T4, T5, T6, T7>(T1 value1, T2 value2, T3 value3, T4 value4, T5 value5, T6 value6, T7 value7)
  • System.HashCode.Combine<T1, T2, T3, T4, T5, T6, T7, T8>(T1 value1, T2 value2, T3 value3, T4 value4, T5 value5, T6 value6, T7 value7, T8 value8)
  • System.HashCode.Equals(System.Object? obj)
  • System.HashCode.GetHashCode()
  • System.HashCode.ToHashCode()
  • System.IO.Directory.CreateTempSubdirectory([System.String? prefix = null])
  • System.IO.File.AppendAllBytes(System.String path, System.Byte[] bytes)
  • System.IO.File.AppendAllBytes(System.String path, System.ReadOnlySpan<System.Byte> bytes) (requires T:System.ReadOnlySpan`1)
  • System.IO.File.AppendAllBytesAsync(System.String path, System.Byte[] bytes, [System.Threading.CancellationToken cancellationToken = default])
  • System.IO.File.AppendAllBytesAsync(System.String path, System.ReadOnlyMemory<System.Byte> bytes, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.ReadOnlyMemory`1)
  • System.IO.File.AppendAllLinesAsync(System.String path, System.Collections.Generic.IEnumerable<System.String> contents, System.Text.Encoding encoding, [System.Threading.CancellationToken cancellationToken = default])
  • System.IO.File.AppendAllLinesAsync(System.String path, System.Collections.Generic.IEnumerable<System.String> contents, [System.Threading.CancellationToken cancellationToken = default])
  • System.IO.File.AppendAllText(System.String path, System.ReadOnlySpan<System.Char> contents) (requires T:System.ReadOnlySpan`1)
  • System.IO.File.AppendAllText(System.String path, System.ReadOnlySpan<System.Char> contents, System.Text.Encoding encoding) (requires T:System.ReadOnlySpan`1)
  • System.IO.File.AppendAllTextAsync(System.String path, System.ReadOnlyMemory<System.Char> contents, System.Text.Encoding encoding, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.ReadOnlyMemory`1)
  • System.IO.File.AppendAllTextAsync(System.String path, System.ReadOnlyMemory<System.Char> contents, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.ReadOnlyMemory`1)
  • System.IO.File.AppendAllTextAsync(System.String path, System.String? contents, System.Text.Encoding encoding, [System.Threading.CancellationToken cancellationToken = default])
  • System.IO.File.AppendAllTextAsync(System.String path, System.String? contents, [System.Threading.CancellationToken cancellationToken = default])
  • System.IO.File.Move(System.String sourceFileName, System.String destFileName, System.Boolean overwrite)
  • System.IO.File.ReadAllBytesAsync(System.String path, [System.Threading.CancellationToken cancellationToken = default])
  • System.IO.File.ReadAllLinesAsync(System.String path, System.Text.Encoding encoding, [System.Threading.CancellationToken cancellationToken = default])
  • System.IO.File.ReadAllLinesAsync(System.String path, [System.Threading.CancellationToken cancellationToken = default])
  • System.IO.File.ReadAllTextAsync(System.String path, System.Text.Encoding encoding, [System.Threading.CancellationToken cancellationToken = default])
  • System.IO.File.ReadAllTextAsync(System.String path, [System.Threading.CancellationToken cancellationToken = default])
  • System.IO.File.ReadLinesAsync(System.String path, System.Text.Encoding encoding, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.IO.File.ReadLinesAsync(System.String path, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.IO.File.WriteAllBytesAsync(System.String path, System.Byte[] bytes, [System.Threading.CancellationToken cancellationToken = default])
  • System.IO.File.WriteAllBytesAsync(System.String path, System.ReadOnlyMemory<System.Byte> bytes, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.ReadOnlyMemory`1)
  • System.IO.File.WriteAllLinesAsync(System.String path, System.Collections.Generic.IEnumerable<System.String> contents, System.Text.Encoding encoding, [System.Threading.CancellationToken cancellationToken = default])
  • System.IO.File.WriteAllLinesAsync(System.String path, System.Collections.Generic.IEnumerable<System.String> contents, [System.Threading.CancellationToken cancellationToken = default])
  • System.IO.File.WriteAllText(System.String path, System.ReadOnlySpan<System.Char> contents) (requires T:System.ReadOnlySpan`1)
  • System.IO.File.WriteAllText(System.String path, System.ReadOnlySpan<System.Char> contents, System.Text.Encoding encoding) (requires T:System.ReadOnlySpan`1)
  • System.IO.File.WriteAllTextAsync(System.String path, System.ReadOnlyMemory<System.Char> contents, System.Text.Encoding encoding, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.ReadOnlyMemory`1)
  • System.IO.File.WriteAllTextAsync(System.String path, System.ReadOnlyMemory<System.Char> contents, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.ReadOnlyMemory`1)
  • System.IO.File.WriteAllTextAsync(System.String path, System.String? contents, System.Text.Encoding encoding, [System.Threading.CancellationToken cancellationToken = default])
  • System.IO.File.WriteAllTextAsync(System.String path, System.String? contents, [System.Threading.CancellationToken cancellationToken = default])
  • System.IO.Path.Combine(params System.ReadOnlySpan<System.String> paths) (requires T:System.ReadOnlySpan`1)
  • System.IO.Path.EndsInDirectorySeparator(System.ReadOnlySpan<System.Char> path) (requires T:System.ReadOnlySpan`1)
  • System.IO.Path.EndsInDirectorySeparator(System.String? path)
  • System.IO.Path.Exists(System.String? path)
  • System.IO.Path.GetDirectoryName(System.ReadOnlySpan<System.Char> path) (requires T:System.ReadOnlySpan`1)
  • System.IO.Path.GetExtension(System.ReadOnlySpan<System.Char> path) (requires T:System.ReadOnlySpan`1)
  • System.IO.Path.GetFileName(System.ReadOnlySpan<System.Char> path) (requires T:System.ReadOnlySpan`1; when any of M:System.IO.Path.GetDirectoryName(System.ReadOnlySpan{System.Char}), M:System.IO.Path.GetExtension(System.ReadOnlySpan{System.Char}), M:System.IO.Path.GetFileNameWithoutExtension(System.ReadOnlySpan{System.Char}), M:System.IO.Path.HasExtension(System.ReadOnlySpan{System.Char}), M:System.IO.Path.TrimEndingDirectorySeparator(System.ReadOnlySpan{System.Char}) is generated)
  • System.IO.Path.GetFileNameWithoutExtension(System.ReadOnlySpan<System.Char> path) (requires T:System.ReadOnlySpan`1)
  • System.IO.Path.GetRelativePath(System.String relativeTo, System.String path)
  • System.IO.Path.HasExtension(System.ReadOnlySpan<System.Char> path) (requires T:System.ReadOnlySpan`1)
  • System.IO.Path.IsPathFullyQualified(System.ReadOnlySpan<System.Char> path) (requires T:System.ReadOnlySpan`1)
  • System.IO.Path.IsPathFullyQualified(System.String path)
  • System.IO.Path.IsPathRooted(System.ReadOnlySpan<System.Char> path) (requires T:System.ReadOnlySpan`1)
  • System.IO.Path.Join(params System.String?[] paths)
  • System.IO.Path.TrimEndingDirectorySeparator(System.ReadOnlySpan<System.Char> path) (requires T:System.ReadOnlySpan`1)
  • System.IO.Path.TrimEndingDirectorySeparator(System.String path)
  • System.IO.Stream.DisposeAsync() (requires T:System.Threading.Tasks.ValueTask)
  • System.IO.Stream.Read(System.Span<System.Byte> buffer) (requires T:System.Span`1)
  • System.IO.Stream.ReadAsync(System.Memory<System.Byte> buffer, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Memory`1, T:System.Threading.Tasks.ValueTask`1)
  • System.IO.Stream.ReadAtLeast(System.Span<System.Byte> buffer, System.Int32 minimumBytes, [System.Boolean throwOnEndOfStream = true]) (requires T:System.Span`1)
  • System.IO.Stream.ReadAtLeastAsync(System.Memory<System.Byte> buffer, System.Int32 minimumBytes, [System.Boolean throwOnEndOfStream = true], [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Memory`1, T:System.Threading.Tasks.ValueTask`1)
  • System.IO.Stream.ReadExactly(System.Byte[] buffer, System.Int32 offset, System.Int32 count)
  • System.IO.Stream.ReadExactly(System.Span<System.Byte> buffer) (requires T:System.Span`1)
  • System.IO.Stream.Write(System.ReadOnlySpan<System.Byte> buffer) (requires T:System.ReadOnlySpan`1)
  • System.IO.Stream.WriteAsync(System.ReadOnlyMemory<System.Byte> buffer, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.ReadOnlyMemory`1, T:System.Threading.Tasks.ValueTask)
  • System.IO.StreamReader.ReadLineAsync()
  • System.IO.StreamReader.ReadLineAsync(System.Threading.CancellationToken cancellationToken) (requires T:System.Threading.Tasks.ValueTask`1)
  • System.IO.TextReader.ReadAsync(System.Memory<System.Char> buffer, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Memory`1, T:System.ReadOnlyMemory`1, T:System.Threading.Tasks.ValueTask`1)
  • System.IO.TextReader.ReadLineAsync(System.Threading.CancellationToken cancellationToken)
  • System.IO.TextReader.ReadToEndAsync(System.Threading.CancellationToken cancellationToken)
  • System.IO.TextWriter.CreateBroadcasting(params System.IO.TextWriter[] writers) (requires T:System.IAsyncDisposable)
  • System.IO.TextWriter.FlushAsync(System.Threading.CancellationToken cancellationToken)
  • System.IO.TextWriter.Write(System.ReadOnlySpan<System.Char> buffer) (requires T:System.ReadOnlySpan`1)
  • System.IO.TextWriter.Write(System.Text.StringBuilder? value)
  • System.IO.TextWriter.WriteAsync(System.ReadOnlyMemory<System.Char> buffer, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.ReadOnlyMemory`1, T:System.Threading.Tasks.ValueTask)
  • System.IO.TextWriter.WriteAsync(System.Text.StringBuilder? value, [System.Threading.CancellationToken cancellationToken = default])
  • System.IO.TextWriter.WriteLine(System.ReadOnlySpan<System.Char> buffer) (requires T:System.ReadOnlySpan`1)
  • System.ITupleInternal.GetHashCode(System.Collections.IEqualityComparer comparer) (when any of T:System.ValueTuple, T:System.ValueTuple`1, T:System.ValueTuple`2, T:System.ValueTuple`3, T:System.ValueTuple`4, T:System.ValueTuple`5, T:System.ValueTuple`6, T:System.ValueTuple`7, T:System.ValueTuple`8 is generated)
  • System.ITupleInternal.ToStringEnd() (when any of T:System.ValueTuple, T:System.ValueTuple`1, T:System.ValueTuple`2, T:System.ValueTuple`3, T:System.ValueTuple`4, T:System.ValueTuple`5, T:System.ValueTuple`6, T:System.ValueTuple`7, T:System.ValueTuple`8 is generated)
  • System.Index.Equals(System.Index other)
  • System.Index.Equals(System.Object? value)
  • System.Index.FromEnd(System.Int32 value)
  • System.Index.FromStart(System.Int32 value)
  • System.Index.GetHashCode()
  • System.Index.GetOffset(System.Int32 length)
  • System.Index.ToString()
  • System.Index.implicit operator System.Index(System.Int32 value)
  • System.Int16.Parse(System.ReadOnlySpan<System.Byte> utf8Text, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.Int16.Parse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.Int16.Parse(System.ReadOnlySpan<System.Char> s, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.Int16.Parse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.Int16.TryFormat(System.Span<System.Byte> utf8Destination, out System.Int32 bytesWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Int16.TryFormat(System.Span<System.Char> destination, out System.Int32 charsWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Int16.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.Int16 result) (requires T:System.ReadOnlySpan`1)
  • System.Int16.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider, out System.Int16 result) (requires T:System.ReadOnlySpan`1)
  • System.Int16.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, out System.Int16 result) (requires T:System.ReadOnlySpan`1)
  • System.Int16.TryParse(System.ReadOnlySpan<System.Char> s, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.Int16 result) (requires T:System.ReadOnlySpan`1)
  • System.Int16.TryParse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider, out System.Int16 result) (requires T:System.ReadOnlySpan`1)
  • System.Int16.TryParse(System.ReadOnlySpan<System.Char> s, out System.Int16 result) (requires T:System.ReadOnlySpan`1)
  • System.Int32.Parse(System.ReadOnlySpan<System.Byte> utf8Text, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.Int32.Parse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.Int32.Parse(System.ReadOnlySpan<System.Char> s, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.Int32.Parse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.Int32.TryFormat(System.Span<System.Byte> utf8Destination, out System.Int32 bytesWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Int32.TryFormat(System.Span<System.Char> destination, out System.Int32 charsWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Int32.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.Int32 result) (requires T:System.ReadOnlySpan`1)
  • System.Int32.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider, out System.Int32 result) (requires T:System.ReadOnlySpan`1)
  • System.Int32.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, out System.Int32 result) (requires T:System.ReadOnlySpan`1)
  • System.Int32.TryParse(System.ReadOnlySpan<System.Char> s, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.Int32 result) (requires T:System.ReadOnlySpan`1)
  • System.Int32.TryParse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider, out System.Int32 result) (requires T:System.ReadOnlySpan`1)
  • System.Int32.TryParse(System.ReadOnlySpan<System.Char> s, out System.Int32 result) (requires T:System.ReadOnlySpan`1)
  • System.Int64.Parse(System.ReadOnlySpan<System.Byte> utf8Text, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.Int64.Parse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.Int64.Parse(System.ReadOnlySpan<System.Char> s, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.Int64.Parse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.Int64.TryFormat(System.Span<System.Byte> utf8Destination, out System.Int32 bytesWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Int64.TryFormat(System.Span<System.Char> destination, out System.Int32 charsWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Int64.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.Int64 result) (requires T:System.ReadOnlySpan`1)
  • System.Int64.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider, out System.Int64 result) (requires T:System.ReadOnlySpan`1)
  • System.Int64.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, out System.Int64 result) (requires T:System.ReadOnlySpan`1)
  • System.Int64.TryParse(System.ReadOnlySpan<System.Char> s, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.Int64 result) (requires T:System.ReadOnlySpan`1)
  • System.Int64.TryParse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider, out System.Int64 result) (requires T:System.ReadOnlySpan`1)
  • System.Int64.TryParse(System.ReadOnlySpan<System.Char> s, out System.Int64 result) (requires T:System.ReadOnlySpan`1)
  • nint.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out nint result) (requires T:System.ReadOnlySpan`1)
  • nint.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider, out nint result) (requires T:System.ReadOnlySpan`1)
  • nint.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, out nint result) (requires T:System.ReadOnlySpan`1)
  • nint.TryParse(System.ReadOnlySpan<System.Char> s, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out nint result) (requires T:System.ReadOnlySpan`1)
  • nint.TryParse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider, out nint result) (requires T:System.ReadOnlySpan`1)
  • nint.TryParse(System.ReadOnlySpan<System.Char> s, out nint result) (requires T:System.ReadOnlySpan`1)
  • nint.TryParse(System.String? s, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out nint result)
  • nint.TryParse(System.String? s, System.IFormatProvider? provider, out nint result)
  • nint.TryParse(System.String? s, out nint result)
  • System.Linq.AsyncEnumerable.AggregateAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TSource>> func, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AggregateAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, TSource, TSource> func, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AggregateAsync<TSource, TAccumulate>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, TAccumulate seed, System.Func<TAccumulate, TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TAccumulate>> func, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AggregateAsync<TSource, TAccumulate>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, TAccumulate seed, System.Func<TAccumulate, TSource, TAccumulate> func, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AggregateAsync<TSource, TAccumulate, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, TAccumulate seed, System.Func<TAccumulate, TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TAccumulate>> func, System.Func<TAccumulate, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TResult>> resultSelector, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AggregateAsync<TSource, TAccumulate, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, TAccumulate seed, System.Func<TAccumulate, TSource, TAccumulate> func, System.Func<TAccumulate, TResult> resultSelector, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AggregateBy<TSource, TKey, TAccumulate>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TKey>> keySelector, System.Func<TKey, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TAccumulate>> seedSelector, System.Func<TAccumulate, TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TAccumulate>> func, [System.Collections.Generic.IEqualityComparer<TKey>? keyComparer = null]) where TKey : notnull (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AggregateBy<TSource, TKey, TAccumulate>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TKey>> keySelector, TAccumulate seed, System.Func<TAccumulate, TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TAccumulate>> func, [System.Collections.Generic.IEqualityComparer<TKey>? keyComparer = null]) where TKey : notnull (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AggregateBy<TSource, TKey, TAccumulate>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, TKey> keySelector, System.Func<TKey, TAccumulate> seedSelector, System.Func<TAccumulate, TSource, TAccumulate> func, [System.Collections.Generic.IEqualityComparer<TKey>? keyComparer = null]) where TKey : notnull (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1)
  • System.Linq.AsyncEnumerable.AggregateBy<TSource, TKey, TAccumulate>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, TKey> keySelector, TAccumulate seed, System.Func<TAccumulate, TSource, TAccumulate> func, [System.Collections.Generic.IEqualityComparer<TKey>? keyComparer = null]) where TKey : notnull (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1)
  • System.Linq.AsyncEnumerable.AllAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Boolean> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AllAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Boolean>> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AnyAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Boolean> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AnyAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Boolean>> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AnyAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.Append<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, TSource element) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.AverageAsync(this System.Collections.Generic.IAsyncEnumerable<System.Decimal> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AverageAsync(this System.Collections.Generic.IAsyncEnumerable<System.Double> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AverageAsync(this System.Collections.Generic.IAsyncEnumerable<System.Int32> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AverageAsync(this System.Collections.Generic.IAsyncEnumerable<System.Int64> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AverageAsync(this System.Collections.Generic.IAsyncEnumerable<System.Nullable<System.Decimal>> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AverageAsync(this System.Collections.Generic.IAsyncEnumerable<System.Nullable<System.Double>> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AverageAsync(this System.Collections.Generic.IAsyncEnumerable<System.Nullable<System.Int32>> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AverageAsync(this System.Collections.Generic.IAsyncEnumerable<System.Nullable<System.Int64>> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AverageAsync(this System.Collections.Generic.IAsyncEnumerable<System.Nullable<System.Single>> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.AverageAsync(this System.Collections.Generic.IAsyncEnumerable<System.Single> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.Chunk<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Int32 size) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1)
  • System.Linq.AsyncEnumerable.Concat<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> first, System.Collections.Generic.IAsyncEnumerable<TSource> second) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.ContainsAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, TSource value, [System.Collections.Generic.IEqualityComparer<TSource>? comparer = null], [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.CountAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Boolean> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.CountAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Boolean>> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.CountAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.DefaultIfEmpty<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.DefaultIfEmpty<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, TSource defaultValue) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1)
  • System.Linq.AsyncEnumerable.DistinctBy<TSource, TKey>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TKey>> keySelector, [System.Collections.Generic.IEqualityComparer<TKey>? comparer = null]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.DistinctBy<TSource, TKey>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, TKey> keySelector, [System.Collections.Generic.IEqualityComparer<TKey>? comparer = null]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1)
  • System.Linq.AsyncEnumerable.Distinct<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, [System.Collections.Generic.IEqualityComparer<TSource>? comparer = null]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1)
  • System.Linq.AsyncEnumerable.ElementAtAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Index index, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.ElementAtAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Int32 index, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.ElementAtOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Index index, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.ElementAtOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Int32 index, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.ExceptBy<TSource, TKey>(this System.Collections.Generic.IAsyncEnumerable<TSource> first, System.Collections.Generic.IAsyncEnumerable<TKey> second, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TKey>> keySelector, [System.Collections.Generic.IEqualityComparer<TKey>? comparer = null]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.ExceptBy<TSource, TKey>(this System.Collections.Generic.IAsyncEnumerable<TSource> first, System.Collections.Generic.IAsyncEnumerable<TKey> second, System.Func<TSource, TKey> keySelector, [System.Collections.Generic.IEqualityComparer<TKey>? comparer = null]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1)
  • System.Linq.AsyncEnumerable.Except<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> first, System.Collections.Generic.IAsyncEnumerable<TSource> second, [System.Collections.Generic.IEqualityComparer<TSource>? comparer = null]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1)
  • System.Linq.AsyncEnumerable.FirstAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Boolean> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.FirstAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Boolean>> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.FirstAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.FirstOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Boolean> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.FirstOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Boolean> predicate, TSource defaultValue, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.FirstOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Boolean>> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.FirstOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Boolean>> predicate, TSource defaultValue, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.FirstOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.FirstOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, TSource defaultValue, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.Index<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.LastAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Boolean> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.LastAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Boolean>> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.LastAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.LastOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Boolean> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.LastOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Boolean> predicate, TSource defaultValue, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.LastOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Boolean>> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.LastOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Boolean>> predicate, TSource defaultValue, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.LastOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.LastOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, TSource defaultValue, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.LongCountAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Boolean> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.LongCountAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Boolean>> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.LongCountAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.MaxAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, [System.Collections.Generic.IComparer<TSource>? comparer = null], [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.MaxByAsync<TSource, TKey>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TKey>> keySelector, [System.Collections.Generic.IComparer<TKey>? comparer = null], [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.MaxByAsync<TSource, TKey>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, TKey> keySelector, [System.Collections.Generic.IComparer<TKey>? comparer = null], [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.MinAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, [System.Collections.Generic.IComparer<TSource>? comparer = null], [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.MinByAsync<TSource, TKey>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TKey>> keySelector, [System.Collections.Generic.IComparer<TKey>? comparer = null], [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.MinByAsync<TSource, TKey>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, TKey> keySelector, [System.Collections.Generic.IComparer<TKey>? comparer = null], [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.Prepend<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, TSource element) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.SelectMany<TSource, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Collections.Generic.IAsyncEnumerable<TResult>> selector) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.SelectMany<TSource, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Collections.Generic.IEnumerable<TResult>> selector) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.SelectMany<TSource, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Int32, System.Collections.Generic.IAsyncEnumerable<TResult>> selector) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.SelectMany<TSource, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Int32, System.Collections.Generic.IEnumerable<TResult>> selector) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.SelectMany<TSource, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Int32, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Collections.Generic.IEnumerable<TResult>>> selector) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SelectMany<TSource, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Collections.Generic.IEnumerable<TResult>>> selector) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SelectMany<TSource, TCollection, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Collections.Generic.IAsyncEnumerable<TCollection>> collectionSelector, System.Func<TSource, TCollection, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TResult>> resultSelector) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SelectMany<TSource, TCollection, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Collections.Generic.IAsyncEnumerable<TCollection>> collectionSelector, System.Func<TSource, TCollection, TResult> resultSelector) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.SelectMany<TSource, TCollection, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Collections.Generic.IEnumerable<TCollection>> collectionSelector, System.Func<TSource, TCollection, TResult> resultSelector) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.SelectMany<TSource, TCollection, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Int32, System.Collections.Generic.IAsyncEnumerable<TCollection>> collectionSelector, System.Func<TSource, TCollection, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TResult>> resultSelector) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SelectMany<TSource, TCollection, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Int32, System.Collections.Generic.IEnumerable<TCollection>> collectionSelector, System.Func<TSource, TCollection, TResult> resultSelector) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.SelectMany<TSource, TCollection, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Int32, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Collections.Generic.IEnumerable<TCollection>>> collectionSelector, System.Func<TSource, TCollection, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TResult>> resultSelector) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SelectMany<TSource, TCollection, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Collections.Generic.IEnumerable<TCollection>>> collectionSelector, System.Func<TSource, TCollection, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TResult>> resultSelector) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.Select<TSource, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Int32, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TResult>> selector) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.Select<TSource, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Int32, TResult> selector) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.Select<TSource, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TResult>> selector) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.Select<TSource, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, TResult> selector) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.SingleAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Boolean> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SingleAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Boolean>> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SingleAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SingleOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Boolean> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SingleOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Boolean> predicate, TSource defaultValue, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SingleOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Boolean>> predicate, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SingleOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Boolean>> predicate, TSource defaultValue, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SingleOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SingleOrDefaultAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, TSource defaultValue, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SkipLast<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Int32 count) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1)
  • System.Linq.AsyncEnumerable.SkipWhile<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Boolean> predicate) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1)
  • System.Linq.AsyncEnumerable.SkipWhile<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Int32, System.Boolean> predicate) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1)
  • System.Linq.AsyncEnumerable.SkipWhile<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Int32, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Boolean>> predicate) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SkipWhile<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Boolean>> predicate) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.Skip<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Int32 count) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1)
  • System.Linq.AsyncEnumerable.SumAsync(this System.Collections.Generic.IAsyncEnumerable<System.Decimal> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SumAsync(this System.Collections.Generic.IAsyncEnumerable<System.Double> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SumAsync(this System.Collections.Generic.IAsyncEnumerable<System.Int32> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SumAsync(this System.Collections.Generic.IAsyncEnumerable<System.Int64> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SumAsync(this System.Collections.Generic.IAsyncEnumerable<System.Nullable<System.Decimal>> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SumAsync(this System.Collections.Generic.IAsyncEnumerable<System.Nullable<System.Double>> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SumAsync(this System.Collections.Generic.IAsyncEnumerable<System.Nullable<System.Int32>> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SumAsync(this System.Collections.Generic.IAsyncEnumerable<System.Nullable<System.Int64>> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SumAsync(this System.Collections.Generic.IAsyncEnumerable<System.Nullable<System.Single>> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.SumAsync(this System.Collections.Generic.IAsyncEnumerable<System.Single> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.TakeLast<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Int32 count) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1)
  • System.Linq.AsyncEnumerable.TakeWhile<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Boolean> predicate) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.TakeWhile<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Int32, System.Boolean> predicate) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.TakeWhile<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Int32, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Boolean>> predicate) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.TakeWhile<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Boolean>> predicate) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.Take<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Int32 count) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.Take<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Range range) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1)
  • System.Linq.AsyncEnumerable.ToArrayAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.ToAsyncEnumerable<TSource>(this System.Collections.Generic.IEnumerable<TSource> source) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.ToDictionaryAsync<TKey, TValue>(this System.Collections.Generic.IAsyncEnumerable<System.Collections.Generic.KeyValuePair<TKey, TValue>> source, [System.Collections.Generic.IEqualityComparer<TKey>? comparer = null], [System.Threading.CancellationToken cancellationToken = default]) where TKey : notnull (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.ToDictionaryAsync<TKey, TValue>(this System.Collections.Generic.IAsyncEnumerable<System.ValueTuple<TKey, TValue>> source, [System.Collections.Generic.IEqualityComparer<TKey>? comparer = null], [System.Threading.CancellationToken cancellationToken = default]) where TKey : notnull (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.ToDictionaryAsync<TSource, TKey>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TKey>> keySelector, [System.Collections.Generic.IEqualityComparer<TKey>? comparer = null], [System.Threading.CancellationToken cancellationToken = default]) where TKey : notnull (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.ToDictionaryAsync<TSource, TKey>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, TKey> keySelector, [System.Collections.Generic.IEqualityComparer<TKey>? comparer = null], [System.Threading.CancellationToken cancellationToken = default]) where TKey : notnull (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.ToDictionaryAsync<TSource, TKey, TElement>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TKey>> keySelector, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TElement>> elementSelector, [System.Collections.Generic.IEqualityComparer<TKey>? comparer = null], [System.Threading.CancellationToken cancellationToken = default]) where TKey : notnull (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.ToDictionaryAsync<TSource, TKey, TElement>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, TKey> keySelector, System.Func<TSource, TElement> elementSelector, [System.Collections.Generic.IEqualityComparer<TKey>? comparer = null], [System.Threading.CancellationToken cancellationToken = default]) where TKey : notnull (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.ToHashSetAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, [System.Collections.Generic.IEqualityComparer<TSource>? comparer = null], [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.ToListAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.UnionBy<TSource, TKey>(this System.Collections.Generic.IAsyncEnumerable<TSource> first, System.Collections.Generic.IAsyncEnumerable<TSource> second, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TKey>> keySelector, [System.Collections.Generic.IEqualityComparer<TKey>? comparer = null]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.UnionBy<TSource, TKey>(this System.Collections.Generic.IAsyncEnumerable<TSource> first, System.Collections.Generic.IAsyncEnumerable<TSource> second, System.Func<TSource, TKey> keySelector, [System.Collections.Generic.IEqualityComparer<TKey>? comparer = null]) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.Union<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> first, System.Collections.Generic.IAsyncEnumerable<TSource> second, [System.Collections.Generic.IEqualityComparer<TSource>? comparer = null]) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.Where<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Boolean> predicate) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.Where<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Int32, System.Boolean> predicate) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Linq.AsyncEnumerable.Where<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Int32, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Boolean>> predicate) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.Where<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Func<TSource, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<System.Boolean>> predicate) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.Zip<TFirst, TSecond>(this System.Collections.Generic.IAsyncEnumerable<TFirst> first, System.Collections.Generic.IAsyncEnumerable<TSecond> second) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1)
  • System.Linq.AsyncEnumerable.Zip<TFirst, TSecond, TThird>(this System.Collections.Generic.IAsyncEnumerable<TFirst> first, System.Collections.Generic.IAsyncEnumerable<TSecond> second, System.Collections.Generic.IAsyncEnumerable<TThird> third) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1)
  • System.Linq.AsyncEnumerable.Zip<TFirst, TSecond, TResult>(this System.Collections.Generic.IAsyncEnumerable<TFirst> first, System.Collections.Generic.IAsyncEnumerable<TSecond> second, System.Func<TFirst, TSecond, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TResult>> resultSelector) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Linq.AsyncEnumerable.Zip<TFirst, TSecond, TResult>(this System.Collections.Generic.IAsyncEnumerable<TFirst> first, System.Collections.Generic.IAsyncEnumerable<TSecond> second, System.Func<TFirst, TSecond, TResult> resultSelector) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1)
  • System.Linq.Enumerable.AggregateBy<TSource, TKey, TAccumulate>(this System.Collections.Generic.IEnumerable<TSource> source, System.Func<TSource, TKey> keySelector, System.Func<TKey, TAccumulate> seedSelector, System.Func<TAccumulate, TSource, TAccumulate> func, [System.Collections.Generic.IEqualityComparer<TKey>? keyComparer = null]) where TKey : notnull
  • System.Linq.Enumerable.AggregateBy<TSource, TKey, TAccumulate>(this System.Collections.Generic.IEnumerable<TSource> source, System.Func<TSource, TKey> keySelector, TAccumulate seed, System.Func<TAccumulate, TSource, TAccumulate> func, [System.Collections.Generic.IEqualityComparer<TKey>? keyComparer = null]) where TKey : notnull
  • System.Linq.Enumerable.Chunk<TSource>(this System.Collections.Generic.IEnumerable<TSource> source, System.Int32 size)
  • System.Linq.Enumerable.CountBy<TSource, TKey>(this System.Collections.Generic.IEnumerable<TSource> source, System.Func<TSource, TKey> keySelector, [System.Collections.Generic.IEqualityComparer<TKey>? keyComparer = null]) where TKey : notnull
  • System.Linq.Enumerable.DistinctBy<TSource, TKey>(this System.Collections.Generic.IEnumerable<TSource> source, System.Func<TSource, TKey> keySelector)
  • System.Linq.Enumerable.DistinctBy<TSource, TKey>(this System.Collections.Generic.IEnumerable<TSource> source, System.Func<TSource, TKey> keySelector, System.Collections.Generic.IEqualityComparer<TKey>? comparer)
  • System.Linq.Enumerable.FullJoin<TOuter, TInner, TKey>(this System.Collections.Generic.IEnumerable<TOuter> outer, System.Collections.Generic.IEnumerable<TInner> inner, System.Func<TOuter, TKey> outerKeySelector, System.Func<TInner, TKey> innerKeySelector, [System.Collections.Generic.IEqualityComparer<TKey>? comparer = null])
  • System.Linq.Enumerable.FullJoin<TOuter, TInner, TKey, TResult>(this System.Collections.Generic.IEnumerable<TOuter> outer, System.Collections.Generic.IEnumerable<TInner> inner, System.Func<TOuter, TKey> outerKeySelector, System.Func<TInner, TKey> innerKeySelector, System.Func<TOuter?, TInner?, TResult> resultSelector, [System.Collections.Generic.IEqualityComparer<TKey>? comparer = null])
  • System.Linq.Enumerable.GroupJoin<TOuter, TInner, TKey>(this System.Collections.Generic.IEnumerable<TOuter> outer, System.Collections.Generic.IEnumerable<TInner> inner, System.Func<TOuter, TKey> outerKeySelector, System.Func<TInner, TKey> innerKeySelector, [System.Collections.Generic.IEqualityComparer<TKey>? comparer = null])
  • System.Linq.Enumerable.Index<TSource>(this System.Collections.Generic.IEnumerable<TSource> source)
  • System.Linq.Enumerable.InfiniteSequence<T>(T start, T step) where T : System.Numerics.IAdditionOperators<T, T, T>
  • System.Linq.Enumerable.IntersectBy<TSource, TKey>(this System.Collections.Generic.IEnumerable<TSource> first, System.Collections.Generic.IEnumerable<TKey> second, System.Func<TSource, TKey> keySelector)
  • System.Linq.Enumerable.IntersectBy<TSource, TKey>(this System.Collections.Generic.IEnumerable<TSource> first, System.Collections.Generic.IEnumerable<TKey> second, System.Func<TSource, TKey> keySelector, System.Collections.Generic.IEqualityComparer<TKey>? comparer)
  • System.Linq.Enumerable.Join<TOuter, TInner, TKey>(this System.Collections.Generic.IEnumerable<TOuter> outer, System.Collections.Generic.IEnumerable<TInner> inner, System.Func<TOuter, TKey> outerKeySelector, System.Func<TInner, TKey> innerKeySelector, [System.Collections.Generic.IEqualityComparer<TKey>? comparer = null])
  • System.Linq.Enumerable.LeftJoin<TOuter, TInner, TKey>(this System.Collections.Generic.IEnumerable<TOuter> outer, System.Collections.Generic.IEnumerable<TInner> inner, System.Func<TOuter, TKey> outerKeySelector, System.Func<TInner, TKey> innerKeySelector, [System.Collections.Generic.IEqualityComparer<TKey>? comparer = null])
  • System.Linq.Enumerable.LeftJoin<TOuter, TInner, TKey, TResult>(this System.Collections.Generic.IEnumerable<TOuter> outer, System.Collections.Generic.IEnumerable<TInner> inner, System.Func<TOuter, TKey> outerKeySelector, System.Func<TInner, TKey> innerKeySelector, System.Func<TOuter, TInner?, TResult> resultSelector)
  • System.Linq.Enumerable.LeftJoin<TOuter, TInner, TKey, TResult>(this System.Collections.Generic.IEnumerable<TOuter> outer, System.Collections.Generic.IEnumerable<TInner> inner, System.Func<TOuter, TKey> outerKeySelector, System.Func<TInner, TKey> innerKeySelector, System.Func<TOuter, TInner?, TResult> resultSelector, System.Collections.Generic.IEqualityComparer<TKey>? comparer)
  • System.Linq.Enumerable.MaxBy<TSource, TKey>(this System.Collections.Generic.IEnumerable<TSource> source, System.Func<TSource, TKey> keySelector)
  • System.Linq.Enumerable.MaxBy<TSource, TKey>(this System.Collections.Generic.IEnumerable<TSource> source, System.Func<TSource, TKey> keySelector, System.Collections.Generic.IComparer<TKey>? comparer)
  • System.Linq.Enumerable.MinBy<TSource, TKey>(this System.Collections.Generic.IEnumerable<TSource> source, System.Func<TSource, TKey> keySelector)
  • System.Linq.Enumerable.MinBy<TSource, TKey>(this System.Collections.Generic.IEnumerable<TSource> source, System.Func<TSource, TKey> keySelector, System.Collections.Generic.IComparer<TKey>? comparer)
  • System.Linq.Enumerable.OrderDescending<T>(this System.Collections.Generic.IEnumerable<T> source)
  • System.Linq.Enumerable.OrderDescending<T>(this System.Collections.Generic.IEnumerable<T> source, System.Collections.Generic.IComparer<T>? comparer)
  • System.Linq.Enumerable.Order<T>(this System.Collections.Generic.IEnumerable<T> source)
  • System.Linq.Enumerable.Order<T>(this System.Collections.Generic.IEnumerable<T> source, System.Collections.Generic.IComparer<T>? comparer)
  • System.Linq.Enumerable.RightJoin<TOuter, TInner, TKey>(this System.Collections.Generic.IEnumerable<TOuter> outer, System.Collections.Generic.IEnumerable<TInner> inner, System.Func<TOuter, TKey> outerKeySelector, System.Func<TInner, TKey> innerKeySelector, [System.Collections.Generic.IEqualityComparer<TKey>? comparer = null])
  • System.Linq.Enumerable.RightJoin<TOuter, TInner, TKey, TResult>(this System.Collections.Generic.IEnumerable<TOuter> outer, System.Collections.Generic.IEnumerable<TInner> inner, System.Func<TOuter, TKey> outerKeySelector, System.Func<TInner, TKey> innerKeySelector, System.Func<TOuter?, TInner, TResult> resultSelector)
  • System.Linq.Enumerable.RightJoin<TOuter, TInner, TKey, TResult>(this System.Collections.Generic.IEnumerable<TOuter> outer, System.Collections.Generic.IEnumerable<TInner> inner, System.Func<TOuter, TKey> outerKeySelector, System.Func<TInner, TKey> innerKeySelector, System.Func<TOuter?, TInner, TResult> resultSelector, System.Collections.Generic.IEqualityComparer<TKey>? comparer)
  • System.Linq.Enumerable.Sequence<T>(T start, T endInclusive, T step) where T : System.Numerics.INumber<T>
  • System.Linq.Enumerable.ToDictionary<TKey, TValue>(this System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey, TValue>> source) where TKey : notnull
  • System.Linq.Enumerable.ToDictionary<TKey, TValue>(this System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey, TValue>> source, System.Collections.Generic.IEqualityComparer<TKey>? comparer) where TKey : notnull
  • System.Linq.Enumerable.ToHashSet<TSource>(this System.Collections.Generic.IEnumerable<TSource> source)
  • System.Linq.Enumerable.ToHashSet<TSource>(this System.Collections.Generic.IEnumerable<TSource> source, System.Collections.Generic.IEqualityComparer<TSource>? comparer)
  • System.Linq.Enumerable.UnionBy<TSource, TKey>(this System.Collections.Generic.IEnumerable<TSource> first, System.Collections.Generic.IEnumerable<TSource> second, System.Func<TSource, TKey> keySelector)
  • System.Linq.Enumerable.UnionBy<TSource, TKey>(this System.Collections.Generic.IEnumerable<TSource> first, System.Collections.Generic.IEnumerable<TSource> second, System.Func<TSource, TKey> keySelector, System.Collections.Generic.IEqualityComparer<TKey>? comparer)
  • System.Linq.Enumerable.Zip<TFirst, TSecond>(this System.Collections.Generic.IEnumerable<TFirst> first, System.Collections.Generic.IEnumerable<TSecond> second)
  • System.Math.Clamp(System.Byte value, System.Byte min, System.Byte max)
  • System.Math.Clamp(System.Decimal value, System.Decimal min, System.Decimal max)
  • System.Math.Clamp(System.Double value, System.Double min, System.Double max)
  • System.Math.Clamp(System.Int16 value, System.Int16 min, System.Int16 max)
  • System.Math.Clamp(System.Int32 value, System.Int32 min, System.Int32 max)
  • System.Math.Clamp(System.Int64 value, System.Int64 min, System.Int64 max)
  • System.Math.Clamp(nint value, nint min, nint max)
  • System.Math.Clamp(System.SByte value, System.SByte min, System.SByte max)
  • System.Math.Clamp(System.Single value, System.Single min, System.Single max)
  • System.Math.Clamp(System.UInt16 value, System.UInt16 min, System.UInt16 max)
  • System.Math.Clamp(System.UInt32 value, System.UInt32 min, System.UInt32 max)
  • System.Math.Clamp(System.UInt64 value, System.UInt64 min, System.UInt64 max)
  • System.Math.Clamp(nuint value, nuint min, nuint max)
  • System.MemoryExtensions.AsSpan(this System.String? text, System.Int32 start, System.Int32 length) (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.CommonPrefixLength<T>(this System.ReadOnlySpan<T> span, System.ReadOnlySpan<T> other) (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.CommonPrefixLength<T>(this System.ReadOnlySpan<T> span, System.ReadOnlySpan<T> other, System.Collections.Generic.IEqualityComparer<T>? comparer) (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.CommonPrefixLength<T>(this System.Span<T> span, System.ReadOnlySpan<T> other) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.MemoryExtensions.CommonPrefixLength<T>(this System.Span<T> span, System.ReadOnlySpan<T> other, System.Collections.Generic.IEqualityComparer<T>? comparer) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.MemoryExtensions.ContainsAnyExcept<T>(this System.ReadOnlySpan<T> span, System.ReadOnlySpan<T> values) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.ContainsAnyExcept<T>(this System.ReadOnlySpan<T> span, T value) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.ContainsAnyExcept<T>(this System.ReadOnlySpan<T> span, T value0, T value1) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.ContainsAnyExcept<T>(this System.ReadOnlySpan<T> span, T value0, T value1, T value2) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.ContainsAnyExcept<T>(this System.Span<T> span, System.ReadOnlySpan<T> values) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.MemoryExtensions.ContainsAnyExcept<T>(this System.Span<T> span, T value) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.MemoryExtensions.ContainsAnyExcept<T>(this System.Span<T> span, T value0, T value1) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.MemoryExtensions.ContainsAnyExcept<T>(this System.Span<T> span, T value0, T value1, T value2) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.MemoryExtensions.ContainsAnyWhiteSpace(this System.ReadOnlySpan<System.Char> span) (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.ContainsAny<T>(this System.Span<T> span, System.ReadOnlySpan<T> values) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.MemoryExtensions.ContainsAny<T>(this System.Span<T> span, T value0, T value1) where T : System.IEquatable<T>? (requires T:System.Span`1)
  • System.MemoryExtensions.ContainsAny<T>(this System.Span<T> span, T value0, T value1, T value2) where T : System.IEquatable<T>? (requires T:System.Span`1)
  • System.MemoryExtensions.Contains<T>(this System.ReadOnlySpan<T> span, T value) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.Contains<T>(this System.Span<T> span, T value) where T : System.IEquatable<T>? (requires T:System.Span`1)
  • System.MemoryExtensions.EndsWith(this System.ReadOnlySpan<System.Char> span, System.ReadOnlySpan<System.Char> value, System.StringComparison comparisonType) (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.EnumerateLines(this System.ReadOnlySpan<System.Char> span) (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.IndexOfAny(this System.ReadOnlySpan<System.Char> span, System.Buffers.SearchValues<System.String> values) (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.IndexOfAnyExceptWhiteSpace(this System.ReadOnlySpan<System.Char> span) (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.IndexOfAnyExcept<T>(this System.ReadOnlySpan<T> span, System.Buffers.SearchValues<T> values) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.IndexOfAnyExcept<T>(this System.ReadOnlySpan<T> span, System.ReadOnlySpan<T> values) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.IndexOfAnyExcept<T>(this System.ReadOnlySpan<T> span, T value) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.IndexOfAnyExcept<T>(this System.ReadOnlySpan<T> span, T value0, T value1) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.IndexOfAnyExcept<T>(this System.ReadOnlySpan<T> span, T value0, T value1, T value2) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.IndexOfAnyExcept<T>(this System.Span<T> span, System.ReadOnlySpan<T> values) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.MemoryExtensions.IndexOfAnyExcept<T>(this System.Span<T> span, T value) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.MemoryExtensions.IndexOfAnyExcept<T>(this System.Span<T> span, T value0, T value1) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.MemoryExtensions.IndexOfAnyExcept<T>(this System.Span<T> span, T value0, T value1, T value2) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.MemoryExtensions.IndexOfAnyWhiteSpace(this System.ReadOnlySpan<System.Char> span) (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.IndexOfAny<T>(this System.ReadOnlySpan<T> span, System.Buffers.SearchValues<T> values) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.LastIndexOfAnyExceptWhiteSpace(this System.ReadOnlySpan<System.Char> span) (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.LastIndexOfAnyWhiteSpace(this System.ReadOnlySpan<System.Char> span) (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.Sort<TKey, TValue>(this System.Span<TKey> keys, System.Span<TValue> items) (requires T:System.Span`1)
  • System.MemoryExtensions.Sort<TKey, TValue>(this System.Span<TKey> keys, System.Span<TValue> items, System.Comparison<TKey> comparison) (requires T:System.Span`1)
  • System.MemoryExtensions.Sort<TKey, TValue, TComparer>(this System.Span<TKey> keys, System.Span<TValue> items, TComparer comparer) where TComparer : System.Collections.Generic.IComparer<TKey>? (requires T:System.Span`1)
  • System.MemoryExtensions.Split(this System.ReadOnlySpan<System.Char> source, System.Span<System.Range> destination, System.Char separator, [System.StringSplitOptions options = System.StringSplitOptions.None]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.MemoryExtensions.Split(this System.ReadOnlySpan<System.Char> source, System.Span<System.Range> destination, System.ReadOnlySpan<System.Char> separator, [System.StringSplitOptions options = System.StringSplitOptions.None]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.MemoryExtensions.SplitAny(this System.ReadOnlySpan<System.Char> source, System.Span<System.Range> destination, System.ReadOnlySpan<System.Char> separators, [System.StringSplitOptions options = System.StringSplitOptions.None]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.MemoryExtensions.SplitAny(this System.ReadOnlySpan<System.Char> source, System.Span<System.Range> destination, System.ReadOnlySpan<System.String> separators, [System.StringSplitOptions options = System.StringSplitOptions.None]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.MemoryExtensions.StartsWith(this System.ReadOnlySpan<System.Char> span, System.ReadOnlySpan<System.Char> value, System.StringComparison comparisonType) (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.StartsWith<T>(this System.ReadOnlySpan<T> span, T value) where T : System.IEquatable<T>? (requires T:System.ReadOnlySpan`1)
  • System.MemoryExtensions.StartsWith<T>(this System.ReadOnlySpan<T> span, T value, [System.Collections.Generic.IEqualityComparer<T>? comparer = null]) (requires T:System.ReadOnlySpan`1)
  • System.Net.Http.HttpContent.CopyTo(System.IO.Stream stream, System.Net.TransportContext? context, System.Threading.CancellationToken cancellationToken) (requires T:System.Net.Http.HttpContent)
  • System.Net.Http.HttpContent.CopyToAsync(System.IO.Stream stream) (requires T:System.Net.Http.HttpContent)
  • System.Net.Http.HttpContent.CopyToAsync(System.IO.Stream stream, System.Net.TransportContext? context) (requires T:System.Net.Http.HttpContent)
  • System.Net.Http.HttpContent.CopyToAsync(System.IO.Stream stream, System.Net.TransportContext? context, System.Threading.CancellationToken cancellationToken) (requires T:System.Net.Http.HttpContent)
  • System.Net.Http.HttpContent.CopyToAsync(System.IO.Stream stream, System.Threading.CancellationToken cancellationToken) (requires T:System.Net.Http.HttpContent)
  • System.Net.Http.HttpContent.LoadIntoBufferAsync(System.Int64 maxBufferSize, System.Threading.CancellationToken cancellationToken) (requires T:System.Net.Http.HttpContent)
  • System.Net.Http.HttpContent.LoadIntoBufferAsync(System.Threading.CancellationToken cancellationToken) (requires T:System.Net.Http.HttpContent)
  • System.Net.Http.HttpContent.ReadAsByteArrayAsync(System.Threading.CancellationToken cancellationToken) (requires T:System.Net.Http.HttpContent)
  • System.Net.Http.HttpContent.ReadAsStream() (requires T:System.Net.Http.HttpContent)
  • System.Net.Http.HttpContent.ReadAsStream(System.Threading.CancellationToken cancellationToken) (requires T:System.Net.Http.HttpContent)
  • System.Net.Http.HttpContent.ReadAsStringAsync(System.Threading.CancellationToken cancellationToken) (requires T:System.Net.Http.HttpContent)
  • System.Net.IPAddress.Parse(System.ReadOnlySpan<System.Char> ipSpan) (requires T:System.ReadOnlySpan`1)
  • System.Net.IPAddress.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, out System.Net.IPAddress? result) (requires T:System.ReadOnlySpan`1)
  • System.Net.IPAddress.TryParse(System.ReadOnlySpan<System.Char> ipSpan, out System.Net.IPAddress? address) (requires T:System.ReadOnlySpan`1)
  • System.Net.Sockets.UdpClient.Send(System.ReadOnlySpan<System.Byte> datagram, System.Net.IPEndPoint? endPoint) (requires T:System.ReadOnlySpan`1)
  • System.Net.Sockets.UdpClient.Send(System.ReadOnlySpan<System.Byte> datagram, System.String? hostname, System.Int32 port) (requires T:System.ReadOnlySpan`1)
  • System.Net.Sockets.UdpClient.SendAsync(System.ReadOnlyMemory<System.Byte> datagram, System.Net.IPEndPoint? endPoint, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.ReadOnlyMemory`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Net.Sockets.UdpClient.SendAsync(System.ReadOnlyMemory<System.Byte> datagram, System.String? hostname, System.Int32 port, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.ReadOnlyMemory`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Net.Sockets.UdpClient.SendAsync(System.ReadOnlyMemory<System.Byte> datagram, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.ReadOnlyMemory`1, T:System.Threading.Tasks.ValueTask`1)
  • System.ObjectDisposedException.ThrowIf(System.Boolean condition, System.Object instance)
  • System.ObjectDisposedException.ThrowIf(System.Boolean condition, System.Type type)
  • System.OperatingSystem.IsLinux()
  • System.OperatingSystem.IsMacOS()
  • System.OperatingSystem.IsWindows()
  • System.OperatingSystem.IsWindowsVersionAtLeast(System.Int32 major, [System.Int32 minor = 0], [System.Int32 build = 0], [System.Int32 revision = 0])
  • System.Random.GetHexString(System.Int32 stringLength, [System.Boolean lowercase = false])
  • System.Random.GetHexString(System.Span<System.Char> destination, [System.Boolean lowercase = false]) (requires T:System.Span`1)
  • System.Random.GetItems<T>(System.ReadOnlySpan<T> choices, System.Int32 length) (requires T:System.ReadOnlySpan`1)
  • System.Random.GetItems<T>(System.ReadOnlySpan<T> choices, System.Span<T> destination) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Random.GetItems<T>(T[] choices, System.Int32 length) (requires T:System.ReadOnlySpan`1; when M:System.Random.GetItems``1(System.ReadOnlySpan{``0},System.Int32) is generated)
  • System.Random.GetString(System.ReadOnlySpan<System.Char> choices, System.Int32 length) (requires T:System.ReadOnlySpan`1)
  • System.Random.NextBytes(System.Span<System.Byte> buffer) (requires T:System.Span`1)
  • System.Random.NextInt64()
  • System.Random.NextInt64(System.Int64 maxValue)
  • System.Random.NextInt64(System.Int64 minValue, System.Int64 maxValue) (when any of M:System.Random.NextInt64, M:System.Random.NextInt64(System.Int64) is generated)
  • System.Random.NextSingle()
  • System.Random.Shuffle<T>(System.Span<T> values) (requires T:System.Span`1)
  • System.Random.Shuffle<T>(T[] values) (when M:System.Random.Shuffle``1(System.Span{``0}) is generated)
  • System.Range.EndAt(System.Index end)
  • System.Range.Equals(System.Object? value)
  • System.Range.Equals(System.Range other)
  • System.Range.GetHashCode()
  • System.Range.GetOffsetAndLength(System.Int32 length)
  • System.Range.StartAt(System.Index start)
  • System.Range.ToString()
  • System.Reflection.MemberInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo other)
  • System.Reflection.MethodInfo.CreateDelegate<T>() where T : System.Delegate
  • System.Reflection.MethodInfo.CreateDelegate<T>(System.Object? target) where T : System.Delegate
  • System.Reflection.NullabilityInfoContext.Create(System.Reflection.EventInfo eventInfo)
  • System.Reflection.NullabilityInfoContext.Create(System.Reflection.FieldInfo fieldInfo)
  • System.Reflection.NullabilityInfoContext.Create(System.Reflection.ParameterInfo parameterInfo)
  • System.Reflection.NullabilityInfoContext.Create(System.Reflection.PropertyInfo propertyInfo)
  • System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted(System.Object? value, [System.Int32 alignment = 0], [System.String? format = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted(scoped System.ReadOnlySpan<System.Char> value) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted(scoped System.ReadOnlySpan<System.Char> value, [System.Int32 alignment = 0], [System.String? format = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted(System.String? value) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted(System.String? value, [System.Int32 alignment = 0], [System.String? format = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted<T>(T value) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted<T>(T value, System.Int32 alignment) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted<T>(T value, System.Int32 alignment, System.String? format) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendFormatted<T>(T value, System.String? format) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendLiteral(System.String value) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.Clear() (requires T:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler)
  • System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.GetDefaultLength(System.Int32 literalLength, System.Int32 formattedCount) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.HasCustomFormatter(System.IFormatProvider provider) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.ToStringAndClear() (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.ToString() (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Runtime.InteropServices.CollectionsMarshal.AsSpan<T>(System.Collections.Generic.List<T>? list) (requires T:System.Span`1)
  • System.SByte.Parse(System.ReadOnlySpan<System.Byte> utf8Text, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.SByte.Parse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.SByte.Parse(System.ReadOnlySpan<System.Char> s, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.SByte.Parse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.SByte.TryFormat(System.Span<System.Byte> utf8Destination, out System.Int32 bytesWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.SByte.TryFormat(System.Span<System.Char> destination, out System.Int32 charsWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.SByte.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.SByte result) (requires T:System.ReadOnlySpan`1)
  • System.SByte.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider, out System.SByte result) (requires T:System.ReadOnlySpan`1)
  • System.SByte.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, out System.SByte result) (requires T:System.ReadOnlySpan`1)
  • System.SByte.TryParse(System.ReadOnlySpan<System.Char> s, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.SByte result) (requires T:System.ReadOnlySpan`1)
  • System.SByte.TryParse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider, out System.SByte result) (requires T:System.ReadOnlySpan`1)
  • System.SByte.TryParse(System.ReadOnlySpan<System.Char> s, out System.SByte result) (requires T:System.ReadOnlySpan`1)
  • System.Security.Cryptography.CryptographicOperations.FixedTimeEquals(System.ReadOnlySpan<System.Byte> source, System.Byte value) (requires T:System.ReadOnlySpan`1)
  • System.Security.Cryptography.IncrementalHash.AppendData(System.ReadOnlySpan<System.Byte> data) (requires T:System.ReadOnlySpan`1, T:System.Security.Cryptography.IncrementalHash)
  • System.Security.Cryptography.MD5.HashData(System.ReadOnlySpan<System.Byte> source) (requires T:System.ReadOnlySpan`1)
  • System.Security.Cryptography.RandomNumberGenerator.Fill(System.Span<System.Byte> data) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Security.Cryptography.RandomNumberGenerator.GetBytes(System.Int32 count)
  • System.Security.Cryptography.RandomNumberGenerator.GetHexString(System.Int32 stringLength, [System.Boolean lowercase = false])
  • System.Security.Cryptography.RandomNumberGenerator.GetHexString(System.Span<System.Char> destination, [System.Boolean lowercase = false]) (requires T:System.Span`1)
  • System.Security.Cryptography.RandomNumberGenerator.GetInt32(System.Int32 toExclusive) (when M:System.Security.Cryptography.RandomNumberGenerator.GetInt32(System.Int32,System.Int32) is generated)
  • System.Security.Cryptography.RandomNumberGenerator.GetInt32(System.Int32 fromInclusive, System.Int32 toExclusive)
  • System.Security.Cryptography.RandomNumberGenerator.GetItems<T>(System.ReadOnlySpan<T> choices, System.Int32 length) (requires T:System.ReadOnlySpan`1, T:System.Span`1; when M:System.Security.Cryptography.RandomNumberGenerator.GetItems``1(System.ReadOnlySpan{``0},System.Span{``0}) is generated)
  • System.Security.Cryptography.RandomNumberGenerator.GetItems<T>(System.ReadOnlySpan<T> choices, System.Span<T> destination) (requires T:System.ReadOnlySpan`1, T:System.Span`1; when M:System.Security.Cryptography.RandomNumberGenerator.GetInt32(System.Int32) is generated)
  • System.Security.Cryptography.RandomNumberGenerator.GetString(System.ReadOnlySpan<System.Char> choices, System.Int32 length) (requires T:System.ReadOnlySpan`1, T:System.Span`1; when M:System.Security.Cryptography.RandomNumberGenerator.GetItems``1(System.ReadOnlySpan{``0},System.Int32) is generated)
  • System.Security.Cryptography.RandomNumberGenerator.Shuffle<T>(System.Span<T> values) (requires T:System.Span`1; when M:System.Security.Cryptography.RandomNumberGenerator.GetInt32(System.Int32,System.Int32) is generated)
  • System.Security.Cryptography.SHA1.HashData(System.Byte[] source)
  • System.Security.Cryptography.SHA1.HashData(System.IO.Stream source)
  • System.Security.Cryptography.SHA1.HashData(System.IO.Stream source, System.Span<System.Byte> destination) (requires T:System.Span`1)
  • System.Security.Cryptography.SHA1.HashData(System.ReadOnlySpan<System.Byte> source) (requires T:System.ReadOnlySpan`1)
  • System.Security.Cryptography.SHA1.HashData(System.ReadOnlySpan<System.Byte> source, System.Span<System.Byte> destination) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Security.Cryptography.SHA1.HashDataAsync(System.IO.Stream source, System.Memory<System.Byte> destination, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Memory`1, T:System.Threading.Tasks.ValueTask`1)
  • System.Security.Cryptography.SHA1.HashDataAsync(System.IO.Stream source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Threading.Tasks.ValueTask, T:System.Threading.Tasks.ValueTask`1)
  • System.Security.Cryptography.SHA1.TryHashData(System.ReadOnlySpan<System.Byte> source, System.Span<System.Byte> destination, out System.Int32 bytesWritten) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Security.Cryptography.SHA256.HashData(System.Byte[] source)
  • System.Security.Cryptography.SHA256.HashData(System.IO.Stream source)
  • System.Security.Cryptography.SHA256.HashData(System.IO.Stream source, System.Span<System.Byte> destination) (requires T:System.Span`1)
  • System.Security.Cryptography.SHA256.HashData(System.ReadOnlySpan<System.Byte> source) (requires T:System.ReadOnlySpan`1)
  • System.Security.Cryptography.SHA256.HashData(System.ReadOnlySpan<System.Byte> source, System.Span<System.Byte> destination) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Security.Cryptography.SHA256.HashDataAsync(System.IO.Stream source, System.Memory<System.Byte> destination, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Memory`1, T:System.Threading.Tasks.ValueTask, T:System.Threading.Tasks.ValueTask`1)
  • System.Security.Cryptography.SHA256.HashDataAsync(System.IO.Stream source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Threading.Tasks.ValueTask, T:System.Threading.Tasks.ValueTask`1)
  • System.Security.Cryptography.SHA256.TryHashData(System.ReadOnlySpan<System.Byte> source, System.Span<System.Byte> destination, out System.Int32 bytesWritten) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Security.Cryptography.SHA384.HashData(System.Byte[] source)
  • System.Security.Cryptography.SHA384.HashData(System.IO.Stream source)
  • System.Security.Cryptography.SHA384.HashData(System.IO.Stream source, System.Span<System.Byte> destination) (requires T:System.Span`1)
  • System.Security.Cryptography.SHA384.HashData(System.ReadOnlySpan<System.Byte> source) (requires T:System.ReadOnlySpan`1)
  • System.Security.Cryptography.SHA384.HashData(System.ReadOnlySpan<System.Byte> source, System.Span<System.Byte> destination) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Security.Cryptography.SHA384.HashDataAsync(System.IO.Stream source, System.Memory<System.Byte> destination, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Memory`1, T:System.Threading.Tasks.ValueTask, T:System.Threading.Tasks.ValueTask`1)
  • System.Security.Cryptography.SHA384.HashDataAsync(System.IO.Stream source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Threading.Tasks.ValueTask, T:System.Threading.Tasks.ValueTask`1)
  • System.Security.Cryptography.SHA384.TryHashData(System.ReadOnlySpan<System.Byte> source, System.Span<System.Byte> destination, out System.Int32 bytesWritten) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Security.Cryptography.SHA512.HashData(System.Byte[] source)
  • System.Security.Cryptography.SHA512.HashData(System.IO.Stream source)
  • System.Security.Cryptography.SHA512.HashData(System.IO.Stream source, System.Span<System.Byte> destination) (requires T:System.Span`1)
  • System.Security.Cryptography.SHA512.HashData(System.ReadOnlySpan<System.Byte> source) (requires T:System.ReadOnlySpan`1)
  • System.Security.Cryptography.SHA512.HashData(System.ReadOnlySpan<System.Byte> source, System.Span<System.Byte> destination) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Security.Cryptography.SHA512.HashDataAsync(System.IO.Stream source, System.Memory<System.Byte> destination, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Memory`1, T:System.Threading.Tasks.ValueTask, T:System.Threading.Tasks.ValueTask`1)
  • System.Security.Cryptography.SHA512.HashDataAsync(System.IO.Stream source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Threading.Tasks.ValueTask, T:System.Threading.Tasks.ValueTask`1)
  • System.Security.Cryptography.SHA512.TryHashData(System.ReadOnlySpan<System.Byte> source, System.Span<System.Byte> destination, out System.Int32 bytesWritten) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Single.Parse(System.ReadOnlySpan<System.Byte> utf8Text, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.AllowThousands | System.Globalization.NumberStyles.Float], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.Single.Parse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.Single.Parse(System.ReadOnlySpan<System.Char> s, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.AllowThousands | System.Globalization.NumberStyles.Float], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.Single.Parse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.Single.TryFormat(System.Span<System.Byte> utf8Destination, out System.Int32 bytesWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Single.TryFormat(System.Span<System.Char> destination, out System.Int32 charsWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Single.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.Single result) (requires T:System.ReadOnlySpan`1)
  • System.Single.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider, out System.Single result) (requires T:System.ReadOnlySpan`1)
  • System.Single.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, out System.Single result) (requires T:System.ReadOnlySpan`1)
  • System.Single.TryParse(System.ReadOnlySpan<System.Char> s, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.Single result) (requires T:System.ReadOnlySpan`1)
  • System.Single.TryParse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider, out System.Single result) (requires T:System.ReadOnlySpan`1)
  • System.Single.TryParse(System.ReadOnlySpan<System.Char> s, out System.Single result) (requires T:System.ReadOnlySpan`1)
  • System.String.Concat(System.ReadOnlySpan<System.Char> str0, System.ReadOnlySpan<System.Char> str1) (requires T:System.ReadOnlySpan`1)
  • System.String.Concat(System.ReadOnlySpan<System.Char> str0, System.ReadOnlySpan<System.Char> str1, System.ReadOnlySpan<System.Char> str2) (requires T:System.ReadOnlySpan`1)
  • System.String.Concat(System.ReadOnlySpan<System.Char> str0, System.ReadOnlySpan<System.Char> str1, System.ReadOnlySpan<System.Char> str2, System.ReadOnlySpan<System.Char> str3) (requires T:System.ReadOnlySpan`1)
  • System.String.Contains(System.Char value)
  • System.String.Contains(System.Char value, System.StringComparison comparisonType)
  • System.String.Contains(System.String value, System.StringComparison comparisonType)
  • System.String.Contains(System.Text.Rune value) (requires T:System.Text.Rune)
  • System.String.Contains(System.Text.Rune value, System.StringComparison comparisonType) (requires T:System.Text.Rune)
  • System.String.CopyTo(System.Span<System.Char> destination) (requires T:System.Span`1)
  • System.String.Create(System.IFormatProvider? provider, ref System.Runtime.CompilerServices.DefaultInterpolatedStringHandler handler) (requires T:System.Runtime.CompilerServices.DefaultInterpolatedStringHandler)
  • System.String.Create<TState>(System.Int32 length, TState state, System.Buffers.SpanAction<System.Char, TState> action) where TState : allows ref struct (requires T:System.Buffers.SpanAction`2, T:System.Span`1)
  • System.String.EndsWith(System.Char value)
  • System.String.EndsWith(System.Char value, System.StringComparison comparisonType)
  • System.String.EndsWith(System.Text.Rune value) (requires T:System.Text.Rune)
  • System.String.EndsWith(System.Text.Rune value, System.StringComparison comparisonType) (requires T:System.Text.Rune)
  • System.String.GetHashCode(System.ReadOnlySpan<System.Char> value) (requires T:System.ReadOnlySpan`1)
  • System.String.GetHashCode(System.ReadOnlySpan<System.Char> value, System.StringComparison comparisonType) (requires T:System.ReadOnlySpan`1)
  • System.String.GetHashCode(System.StringComparison comparisonType)
  • System.String.IndexOf(System.Char value, System.Int32 startIndex, System.Int32 count, System.StringComparison comparisonType)
  • System.String.IndexOf(System.Char value, System.Int32 startIndex, System.StringComparison comparisonType)
  • System.String.IndexOf(System.Char value, System.StringComparison comparisonType)
  • System.String.IndexOf(System.Text.Rune value) (requires T:System.Text.Rune)
  • System.String.IndexOf(System.Text.Rune value, System.Int32 startIndex) (requires T:System.Text.Rune)
  • System.String.IndexOf(System.Text.Rune value, System.Int32 startIndex, System.Int32 count) (requires T:System.Text.Rune)
  • System.String.IndexOf(System.Text.Rune value, System.Int32 startIndex, System.Int32 count, System.StringComparison comparisonType) (requires T:System.Text.Rune)
  • System.String.IndexOf(System.Text.Rune value, System.Int32 startIndex, System.StringComparison comparisonType) (requires T:System.Text.Rune)
  • System.String.IndexOf(System.Text.Rune value, System.StringComparison comparisonType) (requires T:System.Text.Rune)
  • System.String.Join(System.Char separator, params System.Object?[] values)
  • System.String.Join(System.Char separator, params System.ReadOnlySpan<System.Object?> values) (requires T:System.ReadOnlySpan`1)
  • System.String.Join(System.Char separator, params System.ReadOnlySpan<System.String?> value) (requires T:System.ReadOnlySpan`1)
  • System.String.Join(System.Char separator, params System.String?[] value)
  • System.String.Join<T>(System.Char separator, System.Collections.Generic.IEnumerable<T> values)
  • System.String.LastIndexOf(System.Char value, System.Int32 startIndex, System.Int32 count, System.StringComparison comparisonType)
  • System.String.LastIndexOf(System.Char value, System.Int32 startIndex, System.StringComparison comparisonType)
  • System.String.LastIndexOf(System.Char value, System.StringComparison comparisonType)
  • System.String.LastIndexOf(System.Text.Rune value) (requires T:System.Text.Rune)
  • System.String.LastIndexOf(System.Text.Rune value, System.Int32 startIndex) (requires T:System.Text.Rune)
  • System.String.LastIndexOf(System.Text.Rune value, System.Int32 startIndex, System.Int32 count) (requires T:System.Text.Rune)
  • System.String.LastIndexOf(System.Text.Rune value, System.Int32 startIndex, System.Int32 count, System.StringComparison comparisonType) (requires T:System.Text.Rune)
  • System.String.LastIndexOf(System.Text.Rune value, System.Int32 startIndex, System.StringComparison comparisonType) (requires T:System.Text.Rune)
  • System.String.LastIndexOf(System.Text.Rune value, System.StringComparison comparisonType) (requires T:System.Text.Rune)
  • System.String.Replace(System.String oldValue, System.String? newValue, System.StringComparison comparisonType)
  • System.String.Replace(System.Text.Rune oldRune, System.Text.Rune newRune) (requires T:System.Text.Rune)
  • System.String.ReplaceLineEndings()
  • System.String.ReplaceLineEndings(System.String replacementText)
  • System.String.Split(System.Char separator, System.Int32 count, [System.StringSplitOptions options = System.StringSplitOptions.None])
  • System.String.Split(System.Char separator, [System.StringSplitOptions options = System.StringSplitOptions.None])
  • System.String.Split(System.Text.Rune separator, System.Int32 count, [System.StringSplitOptions options = System.StringSplitOptions.None]) (requires T:System.Text.Rune)
  • System.String.Split(System.Text.Rune separator, [System.StringSplitOptions options = System.StringSplitOptions.None]) (requires T:System.Text.Rune)
  • System.String.StartsWith(System.Char value)
  • System.String.StartsWith(System.Char value, System.StringComparison comparisonType)
  • System.String.StartsWith(System.Text.Rune value) (requires T:System.Text.Rune)
  • System.String.StartsWith(System.Text.Rune value, System.StringComparison comparisonType) (requires T:System.Text.Rune)
  • System.String.Trim(System.Text.Rune trimRune) (requires T:System.Text.Rune)
  • System.String.TrimEnd(System.Text.Rune trimRune) (requires T:System.Text.Rune)
  • System.String.TrimStart(System.Text.Rune trimRune) (requires T:System.Text.Rune)
  • System.String.TryCopyTo(System.Span<System.Char> destination) (requires T:System.Span`1)
  • System.StringComparer.FromComparison(System.StringComparison comparisonType)
  • System.StringNormalizationExtensions.GetNormalizedLength(this System.ReadOnlySpan<System.Char> source, [System.Text.NormalizationForm normalizationForm = System.Text.NormalizationForm.FormC]) (requires T:System.ReadOnlySpan`1)
  • System.StringNormalizationExtensions.IsNormalized(this System.ReadOnlySpan<System.Char> source, [System.Text.NormalizationForm normalizationForm = System.Text.NormalizationForm.FormC]) (requires T:System.ReadOnlySpan`1)
  • System.StringNormalizationExtensions.TryNormalize(this System.ReadOnlySpan<System.Char> source, System.Span<System.Char> destination, out System.Int32 charsWritten, [System.Text.NormalizationForm normalizationForm = System.Text.NormalizationForm.FormC]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Text.Encoding.GetByteCount(System.ReadOnlySpan<System.Char> chars) (requires T:System.ReadOnlySpan`1)
  • System.Text.Encoding.GetBytes(System.ReadOnlySpan<System.Char> chars, System.Span<System.Byte> bytes) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Text.Encoding.GetCharCount(System.ReadOnlySpan<System.Byte> bytes) (requires T:System.ReadOnlySpan`1)
  • System.Text.Encoding.GetChars(System.ReadOnlySpan<System.Byte> bytes, System.Span<System.Char> chars) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Text.Encoding.GetString(System.ReadOnlySpan<System.Byte> bytes) (requires T:System.ReadOnlySpan`1)
  • System.Text.Encoding.TryGetBytes(System.ReadOnlySpan<System.Char> chars, System.Span<System.Byte> bytes, out System.Int32 bytesWritten) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Text.Encoding.TryGetChars(System.ReadOnlySpan<System.Byte> bytes, System.Span<System.Char> chars, out System.Int32 charsWritten) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Text.RegularExpressions.Regex.Count(System.ReadOnlySpan<System.Char> input) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.Count(System.ReadOnlySpan<System.Char> input, System.Int32 startat) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.Count(System.ReadOnlySpan<System.Char> input, System.String pattern) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.Count(System.ReadOnlySpan<System.Char> input, System.String pattern, System.Text.RegularExpressions.RegexOptions options) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.Count(System.ReadOnlySpan<System.Char> input, System.String pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.Count(System.String input)
  • System.Text.RegularExpressions.Regex.Count(System.String input, System.String pattern)
  • System.Text.RegularExpressions.Regex.Count(System.String input, System.String pattern, System.Text.RegularExpressions.RegexOptions options)
  • System.Text.RegularExpressions.Regex.Count(System.String input, System.String pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout)
  • System.Text.RegularExpressions.Regex.EnumerateMatches(System.ReadOnlySpan<System.Char> input) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.EnumerateMatches(System.ReadOnlySpan<System.Char> input, System.Int32 startat) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.EnumerateMatches(System.ReadOnlySpan<System.Char> input, System.String pattern) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.EnumerateMatches(System.ReadOnlySpan<System.Char> input, System.String pattern, System.Text.RegularExpressions.RegexOptions options) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.EnumerateMatches(System.ReadOnlySpan<System.Char> input, System.String pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.EnumerateSplits(System.ReadOnlySpan<System.Char> input) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.EnumerateSplits(System.ReadOnlySpan<System.Char> input, System.Int32 count) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.EnumerateSplits(System.ReadOnlySpan<System.Char> input, System.Int32 count, System.Int32 startat) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.EnumerateSplits(System.ReadOnlySpan<System.Char> input, System.String pattern) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.EnumerateSplits(System.ReadOnlySpan<System.Char> input, System.String pattern, System.Text.RegularExpressions.RegexOptions options) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.EnumerateSplits(System.ReadOnlySpan<System.Char> input, System.String pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.IsMatch(System.ReadOnlySpan<System.Char> input) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.IsMatch(System.ReadOnlySpan<System.Char> input, System.Int32 startat) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.IsMatch(System.ReadOnlySpan<System.Char> input, System.String pattern) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.IsMatch(System.ReadOnlySpan<System.Char> input, System.String pattern, System.Text.RegularExpressions.RegexOptions options) (requires T:System.ReadOnlySpan`1)
  • System.Text.RegularExpressions.Regex.IsMatch(System.ReadOnlySpan<System.Char> input, System.String pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) (requires T:System.ReadOnlySpan`1)
  • System.Text.Rune.Equals(System.Text.Rune other, System.StringComparison comparisonType) (requires T:System.Text.Rune)
  • System.Text.RunePosition.Deconstruct(out System.Text.Rune rune, out System.Int32 startIndex) (requires T:System.ReadOnlySpan`1, T:System.Text.Rune)
  • System.Text.RunePosition.Deconstruct(out System.Text.Rune rune, out System.Int32 startIndex, out System.Int32 length) (requires T:System.ReadOnlySpan`1, T:System.Text.Rune)
  • System.Text.RunePosition.EnumerateUtf16(System.ReadOnlySpan<System.Char> span) (requires T:System.ReadOnlySpan`1, T:System.Text.Rune)
  • System.Text.RunePosition.EnumerateUtf8(System.ReadOnlySpan<System.Byte> span) (requires T:System.ReadOnlySpan`1, T:System.Text.Rune)
  • System.Text.RunePosition.Equals(System.Object? obj) (requires T:System.ReadOnlySpan`1, T:System.Text.Rune)
  • System.Text.RunePosition.Equals(System.Text.RunePosition other) (requires T:System.ReadOnlySpan`1, T:System.Text.Rune)
  • System.Text.RunePosition.GetHashCode() (requires T:System.ReadOnlySpan`1, T:System.Text.Rune)
  • System.Text.RunePosition.operator ==(System.Text.RunePosition left, System.Text.RunePosition right) (requires T:System.ReadOnlySpan`1, T:System.Text.Rune)
  • System.Text.RunePosition.operator !=(System.Text.RunePosition left, System.Text.RunePosition right) (requires T:System.ReadOnlySpan`1, T:System.Text.Rune)
  • System.Text.StringBuilder.Append(System.ReadOnlyMemory<System.Char> value) (requires T:System.ReadOnlyMemory`1)
  • System.Text.StringBuilder.Append(System.ReadOnlySpan<System.Char> value) (requires T:System.ReadOnlySpan`1)
  • System.Text.StringBuilder.Append(System.Text.Rune value) (requires T:System.Text.Rune)
  • System.Text.StringBuilder.AppendJoin(System.Char separator, params System.Object?[] values)
  • System.Text.StringBuilder.AppendJoin(System.Char separator, params System.String?[] values)
  • System.Text.StringBuilder.AppendJoin(System.String? separator, params System.Object?[] values)
  • System.Text.StringBuilder.AppendJoin(System.String? separator, params System.String?[] values)
  • System.Text.StringBuilder.AppendJoin<T>(System.Char separator, System.Collections.Generic.IEnumerable<T> values)
  • System.Text.StringBuilder.AppendJoin<T>(System.String? separator, System.Collections.Generic.IEnumerable<T> values)
  • System.Text.StringBuilder.EnumerateRunes() (when T:System.Text.StringBuilderRuneEnumerator is generated)
  • System.Text.StringBuilder.GetRuneAt(System.Int32 index) (requires T:System.Text.Rune)
  • System.Text.StringBuilder.Insert(System.Int32 index, System.Text.Rune value) (requires T:System.Text.Rune)
  • System.Text.StringBuilder.Replace(System.ReadOnlySpan<System.Char> oldValue, System.ReadOnlySpan<System.Char> newValue) (requires T:System.ReadOnlySpan`1)
  • System.Text.StringBuilder.Replace(System.ReadOnlySpan<System.Char> oldValue, System.ReadOnlySpan<System.Char> newValue, System.Int32 startIndex, System.Int32 count) (requires T:System.ReadOnlySpan`1)
  • System.Text.StringBuilder.Replace(System.Text.Rune oldRune, System.Text.Rune newRune) (requires T:System.Text.Rune)
  • System.Text.StringBuilder.Replace(System.Text.Rune oldRune, System.Text.Rune newRune, System.Int32 startIndex, System.Int32 count) (requires T:System.Text.Rune)
  • System.Text.StringBuilder.TryGetRuneAt(System.Int32 index, out System.Text.Rune value) (requires T:System.Text.Rune)
  • readonly System.Text.StringBuilderRuneEnumerator.GetEnumerator() (requires T:System.Text.Rune)
  • System.Text.StringBuilderRuneEnumerator.MoveNext() (requires T:System.Text.Rune)
  • System.Threading.CancellationToken.Register(System.Action<System.Object?, System.Threading.CancellationToken> callback, System.Object? state)
  • System.Threading.CancellationToken.UnsafeRegister(System.Action<System.Object?, System.Threading.CancellationToken> callback, System.Object? state)
  • System.Threading.CancellationToken.UnsafeRegister(System.Action<System.Object?> callback, System.Object? state)
  • System.Threading.CancellationTokenSource.CancelAsync()
  • System.Threading.ITimer.Change(System.TimeSpan dueTime, System.TimeSpan period) (requires T:System.IAsyncDisposable)
  • System.Threading.Interlocked.And<T>(ref T location1, T value) where T : struct (requires T:System.Runtime.CompilerServices.Unsafe)
  • System.Threading.Interlocked.Or<T>(ref T location1, T value) where T : struct (requires T:System.Runtime.CompilerServices.Unsafe)
  • System.Threading.Lock.Enter()
  • System.Threading.Lock.EnterScope()
  • System.Threading.Lock.Exit()
  • System.Threading.Lock.TryEnter(System.Int32 millisecondsTimeout)
  • System.Threading.Lock.TryEnter(System.TimeSpan timeout)
  • System.Threading.Lock.TryEnter()
  • System.Threading.PeriodicTimer.Dispose() (requires T:System.Threading.ITimer, T:System.Threading.Tasks.Sources.IValueTaskSource`1, T:System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags, T:System.Threading.Tasks.Sources.ValueTaskSourceStatus, T:System.Threading.Tasks.ValueTask`1, T:System.TimeProvider)
  • System.Threading.PeriodicTimer.WaitForNextTickAsync([System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Threading.ITimer, T:System.Threading.Tasks.Sources.IValueTaskSource`1, T:System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags, T:System.Threading.Tasks.Sources.ValueTaskSourceStatus, T:System.Threading.Tasks.ValueTask`1, T:System.TimeProvider)
  • System.Threading.Tasks.Task.WaitAsync(System.Threading.CancellationToken cancellationToken)
  • System.Threading.Tasks.Task.WaitAsync(System.TimeSpan timeout)
  • System.Threading.Tasks.Task.WaitAsync(System.TimeSpan timeout, System.Threading.CancellationToken cancellationToken)
  • System.Threading.Tasks.Task.WhenAll(params System.ReadOnlySpan<System.Threading.Tasks.Task> tasks) (requires T:System.ReadOnlySpan`1)
  • System.Threading.Tasks.Task.WhenAll<TResult>(params System.ReadOnlySpan<System.Threading.Tasks.Task<TResult>> tasks) (requires T:System.ReadOnlySpan`1)
  • System.Threading.Tasks.Task.WhenAny(params System.ReadOnlySpan<System.Threading.Tasks.Task> tasks) (requires T:System.ReadOnlySpan`1)
  • System.Threading.Tasks.Task.WhenAny<TResult>(params System.ReadOnlySpan<System.Threading.Tasks.Task<TResult>> tasks) (requires T:System.ReadOnlySpan`1)
  • System.Threading.Tasks.Task.WhenEach(System.Collections.Generic.IEnumerable<System.Threading.Tasks.Task> tasks) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Threading.Tasks.Task.WhenEach<TResult>(System.Collections.Generic.IEnumerable<System.Threading.Tasks.Task<TResult>> tasks) (requires T:System.Collections.Generic.IAsyncEnumerable`1)
  • System.Threading.Tasks.TaskAsyncEnumerableExtensions.ToBlockingEnumerable<T>(this System.Collections.Generic.IAsyncEnumerable<T> source, [System.Threading.CancellationToken cancellationToken = default]) (requires T:System.Collections.Generic.IAsyncEnumerable`1, T:System.Collections.Generic.IAsyncEnumerator`1, T:System.Threading.Tasks.ValueTask, T:System.Threading.Tasks.ValueTask`1)
  • System.Threading.Tasks.TaskCompletionSource<TResult>.SetCanceled(System.Threading.CancellationToken cancellationToken)
  • System.Threading.Tasks.TaskToAsyncResult.Begin(System.Threading.Tasks.Task task, System.AsyncCallback? callback, System.Object? state)
  • System.Threading.Tasks.TaskToAsyncResult.End(System.IAsyncResult asyncResult)
  • System.Threading.Tasks.TaskToAsyncResult.End<TResult>(System.IAsyncResult asyncResult)
  • System.Threading.Tasks.TaskToAsyncResult.Unwrap(System.IAsyncResult asyncResult)
  • System.Threading.Tasks.TaskToAsyncResult.Unwrap<TResult>(System.IAsyncResult asyncResult)
  • System.Threading.Tasks.Task<TResult>.WaitAsync(System.Threading.CancellationToken cancellationToken)
  • System.Threading.Tasks.Task<TResult>.WaitAsync(System.TimeSpan timeout)
  • System.Threading.Tasks.Task<TResult>.WaitAsync(System.TimeSpan timeout, System.Threading.CancellationToken cancellationToken)
  • System.Threading.Tasks.ValueTask.FromResult<TResult>(TResult result) (requires T:System.Threading.Tasks.ValueTask, T:System.Threading.Tasks.ValueTask`1)
  • System.TimeOnly.Deconstruct(out System.Int32 hour, out System.Int32 minute) (requires T:System.TimeOnly)
  • System.TimeOnly.Deconstruct(out System.Int32 hour, out System.Int32 minute, out System.Int32 second) (requires T:System.TimeOnly)
  • System.TimeOnly.Deconstruct(out System.Int32 hour, out System.Int32 minute, out System.Int32 second, out System.Int32 millisecond) (requires T:System.TimeOnly)
  • System.TimeOnly.Deconstruct(out System.Int32 hour, out System.Int32 minute, out System.Int32 second, out System.Int32 millisecond, out System.Int32 microsecond) (requires T:System.TimeOnly)
  • System.TimeOnly.TryFormat(System.Span<System.Byte> utf8Destination, out System.Int32 bytesWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1, T:System.TimeOnly)
  • System.TimeOnly.TryFormat(System.Span<System.Char> destination, out System.Int32 charsWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1, T:System.TimeOnly)
  • System.TimeProvider.CreateTimer(System.Threading.TimerCallback callback, System.Object? state, System.TimeSpan dueTime, System.TimeSpan period) (requires T:System.IAsyncDisposable, T:System.Threading.ITimer, T:System.Threading.Tasks.ValueTask)
  • System.TimeProvider.GetElapsedTime(System.Int64 startingTimestamp) (requires T:System.IAsyncDisposable, T:System.Threading.ITimer, T:System.Threading.Tasks.ValueTask)
  • System.TimeProvider.GetElapsedTime(System.Int64 startingTimestamp, System.Int64 endingTimestamp) (requires T:System.IAsyncDisposable, T:System.Threading.ITimer, T:System.Threading.Tasks.ValueTask)
  • System.TimeProvider.GetLocalNow() (requires T:System.IAsyncDisposable, T:System.Threading.ITimer, T:System.Threading.Tasks.ValueTask)
  • System.TimeProvider.GetTimestamp() (requires T:System.IAsyncDisposable, T:System.Threading.ITimer, T:System.Threading.Tasks.ValueTask)
  • System.TimeProvider.GetUtcNow() (requires T:System.IAsyncDisposable, T:System.Threading.ITimer, T:System.Threading.Tasks.ValueTask)
  • System.TimeSpan.FromDays(System.Int32 days, [System.Int32 hours = 0], [System.Int64 minutes = 0], [System.Int64 seconds = 0], [System.Int64 milliseconds = 0], [System.Int64 microseconds = 0])
  • System.TimeSpan.FromHours(System.Int32 hours, [System.Int64 minutes = 0], [System.Int64 seconds = 0], [System.Int64 milliseconds = 0], [System.Int64 microseconds = 0])
  • System.TimeSpan.FromMicroseconds(System.Int64 microseconds)
  • System.TimeSpan.FromMilliseconds(System.Int64 milliseconds, System.Int64 microseconds)
  • System.TimeSpan.FromMinutes(System.Int64 minutes, [System.Int64 seconds = 0], [System.Int64 milliseconds = 0], [System.Int64 microseconds = 0])
  • System.TimeSpan.FromSeconds(System.Int64 seconds, [System.Int64 milliseconds = 0], [System.Int64 microseconds = 0])
  • System.TimeSpan.Multiply(System.Double factor)
  • System.TimeSpan.TryFormat(System.Span<System.Byte> utf8Destination, out System.Int32 bytesWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? formatProvider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.TimeSpan.TryFormat(System.Span<System.Char> destination, out System.Int32 charsWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? formatProvider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.TimeSpan.operator /(System.TimeSpan timeSpan, System.Double divisor)
  • System.TimeSpan.operator *(System.Double factor, System.TimeSpan timeSpan)
  • System.TimeSpan.operator *(System.TimeSpan timeSpan, System.Double factor)
  • System.Type.GetConstructor(System.Reflection.BindingFlags bindingAttr, System.Type[] types)
  • System.Type.GetMethod(System.String name, System.Int32 genericParameterCount, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder? binder, System.Type[] types, System.Reflection.ParameterModifier[]? modifiers)
  • System.Type.GetMethod(System.String name, System.Int32 genericParameterCount, System.Reflection.BindingFlags bindingAttr, System.Type[] types) (when M:System.Type.GetMethod(System.String,System.Int32,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[]) is generated)
  • System.Type.GetMethod(System.String name, System.Reflection.BindingFlags bindingAttr, System.Type[] types)
  • System.Type.IsAssignableTo(System.Type? targetType)
  • System.UInt16.Parse(System.ReadOnlySpan<System.Byte> utf8Text, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.UInt16.Parse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.UInt16.Parse(System.ReadOnlySpan<System.Char> s, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.UInt16.Parse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.UInt16.TryFormat(System.Span<System.Byte> utf8Destination, out System.Int32 bytesWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.UInt16.TryFormat(System.Span<System.Char> destination, out System.Int32 charsWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.UInt16.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.UInt16 result) (requires T:System.ReadOnlySpan`1)
  • System.UInt16.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider, out System.UInt16 result) (requires T:System.ReadOnlySpan`1)
  • System.UInt16.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, out System.UInt16 result) (requires T:System.ReadOnlySpan`1)
  • System.UInt16.TryParse(System.ReadOnlySpan<System.Char> s, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.UInt16 result) (requires T:System.ReadOnlySpan`1)
  • System.UInt16.TryParse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider, out System.UInt16 result) (requires T:System.ReadOnlySpan`1)
  • System.UInt16.TryParse(System.ReadOnlySpan<System.Char> s, out System.UInt16 result) (requires T:System.ReadOnlySpan`1)
  • System.UInt32.Parse(System.ReadOnlySpan<System.Byte> utf8Text, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.UInt32.Parse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.UInt32.Parse(System.ReadOnlySpan<System.Char> s, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.UInt32.Parse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.UInt32.TryFormat(System.Span<System.Byte> utf8Destination, out System.Int32 bytesWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.UInt32.TryFormat(System.Span<System.Char> destination, out System.Int32 charsWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.UInt32.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.UInt32 result) (requires T:System.ReadOnlySpan`1)
  • System.UInt32.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider, out System.UInt32 result) (requires T:System.ReadOnlySpan`1)
  • System.UInt32.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, out System.UInt32 result) (requires T:System.ReadOnlySpan`1)
  • System.UInt32.TryParse(System.ReadOnlySpan<System.Char> s, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.UInt32 result) (requires T:System.ReadOnlySpan`1)
  • System.UInt32.TryParse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider, out System.UInt32 result) (requires T:System.ReadOnlySpan`1)
  • System.UInt32.TryParse(System.ReadOnlySpan<System.Char> s, out System.UInt32 result) (requires T:System.ReadOnlySpan`1)
  • System.UInt64.Parse(System.ReadOnlySpan<System.Byte> utf8Text, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.UInt64.Parse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.UInt64.Parse(System.ReadOnlySpan<System.Char> s, [System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1)
  • System.UInt64.Parse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider) (requires T:System.ReadOnlySpan`1)
  • System.UInt64.TryFormat(System.Span<System.Byte> utf8Destination, out System.Int32 bytesWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.UInt64.TryFormat(System.Span<System.Char> destination, out System.Int32 charsWritten, [System.ReadOnlySpan<System.Char> format = default], [System.IFormatProvider? provider = null]) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.UInt64.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.UInt64 result) (requires T:System.ReadOnlySpan`1)
  • System.UInt64.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider, out System.UInt64 result) (requires T:System.ReadOnlySpan`1)
  • System.UInt64.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, out System.UInt64 result) (requires T:System.ReadOnlySpan`1)
  • System.UInt64.TryParse(System.ReadOnlySpan<System.Char> s, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out System.UInt64 result) (requires T:System.ReadOnlySpan`1)
  • System.UInt64.TryParse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider, out System.UInt64 result) (requires T:System.ReadOnlySpan`1)
  • System.UInt64.TryParse(System.ReadOnlySpan<System.Char> s, out System.UInt64 result) (requires T:System.ReadOnlySpan`1)
  • nuint.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out nuint result) (requires T:System.ReadOnlySpan`1)
  • nuint.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, System.IFormatProvider? provider, out nuint result) (requires T:System.ReadOnlySpan`1)
  • nuint.TryParse(System.ReadOnlySpan<System.Byte> utf8Text, out nuint result) (requires T:System.ReadOnlySpan`1)
  • nuint.TryParse(System.ReadOnlySpan<System.Char> s, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out nuint result) (requires T:System.ReadOnlySpan`1)
  • nuint.TryParse(System.ReadOnlySpan<System.Char> s, System.IFormatProvider? provider, out nuint result) (requires T:System.ReadOnlySpan`1)
  • nuint.TryParse(System.ReadOnlySpan<System.Char> s, out nuint result) (requires T:System.ReadOnlySpan`1)
  • nuint.TryParse(System.String? s, System.Globalization.NumberStyles style, System.IFormatProvider? provider, out nuint result)
  • nuint.TryParse(System.String? s, System.IFormatProvider? provider, out nuint result)
  • nuint.TryParse(System.String? s, out nuint result)
  • System.Uri.EscapeDataString(System.ReadOnlySpan<System.Char> charsToEscape) (requires T:System.ReadOnlySpan`1)
  • System.Uri.TryEscapeDataString(System.ReadOnlySpan<System.Char> charsToEscape, System.Span<System.Char> destination, out System.Int32 charsWritten) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Uri.TryUnescapeDataString(System.ReadOnlySpan<System.Char> charsToUnescape, System.Span<System.Char> destination, out System.Int32 charsWritten) (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Uri.UnescapeDataString(System.ReadOnlySpan<System.Char> charsToUnescape) (requires T:System.ReadOnlySpan`1)
  • System.ValueTuple.CompareTo(System.ValueTuple other)
  • System.ValueTuple.Create<T1>(T1 item1)
  • System.ValueTuple.Create<T1, T2>(T1 item1, T2 item2)
  • System.ValueTuple.Create<T1, T2, T3>(T1 item1, T2 item2, T3 item3)
  • System.ValueTuple.Create<T1, T2, T3, T4>(T1 item1, T2 item2, T3 item3, T4 item4)
  • System.ValueTuple.Create<T1, T2, T3, T4, T5>(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5)
  • System.ValueTuple.Create<T1, T2, T3, T4, T5, T6>(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6)
  • System.ValueTuple.Create<T1, T2, T3, T4, T5, T6, T7>(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6, T7 item7)
  • System.ValueTuple.Create()
  • System.ValueTuple.Equals(System.Object? obj)
  • System.ValueTuple.Equals(System.ValueTuple other)
  • System.ValueTuple.GetHashCode()
  • System.ValueTuple.ToString()
  • System.ValueTuple<T1>.CompareTo(System.ValueTuple<T1> other)
  • System.ValueTuple<T1>.Equals(System.Object? obj)
  • System.ValueTuple<T1>.Equals(System.ValueTuple<T1> other)
  • System.ValueTuple<T1>.GetHashCode()
  • System.ValueTuple<T1>.ToString()
  • System.ValueTuple<T1, T2>.CompareTo(System.ValueTuple<T1, T2> other)
  • System.ValueTuple<T1, T2>.Equals(System.Object? obj)
  • System.ValueTuple<T1, T2>.Equals(System.ValueTuple<T1, T2> other)
  • System.ValueTuple<T1, T2>.GetHashCode()
  • System.ValueTuple<T1, T2>.ToString()
  • System.ValueTuple<T1, T2, T3>.CompareTo(System.ValueTuple<T1, T2, T3> other)
  • System.ValueTuple<T1, T2, T3>.Equals(System.Object? obj)
  • System.ValueTuple<T1, T2, T3>.Equals(System.ValueTuple<T1, T2, T3> other)
  • System.ValueTuple<T1, T2, T3>.GetHashCode()
  • System.ValueTuple<T1, T2, T3>.ToString()
  • System.ValueTuple<T1, T2, T3, T4>.CompareTo(System.ValueTuple<T1, T2, T3, T4> other)
  • System.ValueTuple<T1, T2, T3, T4>.Equals(System.Object obj)
  • System.ValueTuple<T1, T2, T3, T4>.Equals(System.ValueTuple<T1, T2, T3, T4> other)
  • System.ValueTuple<T1, T2, T3, T4>.GetHashCode()
  • System.ValueTuple<T1, T2, T3, T4>.ToString()
  • System.ValueTuple<T1, T2, T3, T4, T5>.CompareTo(System.ValueTuple<T1, T2, T3, T4, T5> other)
  • System.ValueTuple<T1, T2, T3, T4, T5>.Equals(System.Object? obj)
  • System.ValueTuple<T1, T2, T3, T4, T5>.Equals(System.ValueTuple<T1, T2, T3, T4, T5> other)
  • System.ValueTuple<T1, T2, T3, T4, T5>.GetHashCode()
  • System.ValueTuple<T1, T2, T3, T4, T5>.ToString()
  • System.ValueTuple<T1, T2, T3, T4, T5, T6>.CompareTo(System.ValueTuple<T1, T2, T3, T4, T5, T6> other)
  • System.ValueTuple<T1, T2, T3, T4, T5, T6>.Equals(System.Object? obj)
  • System.ValueTuple<T1, T2, T3, T4, T5, T6>.Equals(System.ValueTuple<T1, T2, T3, T4, T5, T6> other)
  • System.ValueTuple<T1, T2, T3, T4, T5, T6>.GetHashCode()
  • System.ValueTuple<T1, T2, T3, T4, T5, T6>.ToString()
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>.CompareTo(System.ValueTuple<T1, T2, T3, T4, T5, T6, T7> other)
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>.Equals(System.Object? obj)
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>.Equals(System.ValueTuple<T1, T2, T3, T4, T5, T6, T7> other)
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>.GetHashCode()
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>.ToString()
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>.CompareTo(System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest> other)
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>.Equals(System.Object obj)
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>.Equals(System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest> other)
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>.GetHashCode()
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>.ToString()
  • System.Xml.Linq.XDocument.LoadAsync(System.IO.Stream stream, System.Xml.Linq.LoadOptions options, System.Threading.CancellationToken cancellationToken)
  • System.Xml.Linq.XDocument.LoadAsync(System.IO.TextReader textReader, System.Xml.Linq.LoadOptions options, System.Threading.CancellationToken cancellationToken)
  • System.Xml.Linq.XDocument.LoadAsync(System.Xml.XmlReader reader, System.Xml.Linq.LoadOptions options, System.Threading.CancellationToken cancellationToken)
  • System.Xml.Linq.XDocument.SaveAsync(System.IO.Stream stream, System.Xml.Linq.SaveOptions options, System.Threading.CancellationToken cancellationToken)
  • System.Xml.Linq.XDocument.SaveAsync(System.IO.TextWriter textWriter, System.Xml.Linq.SaveOptions options, System.Threading.CancellationToken cancellationToken)
  • System.Xml.Linq.XDocument.SaveAsync(System.Xml.XmlWriter writer, System.Threading.CancellationToken cancellationToken)
  • System.Xml.Linq.XElement.LoadAsync(System.IO.Stream stream, System.Xml.Linq.LoadOptions options, System.Threading.CancellationToken cancellationToken)
  • System.Xml.Linq.XElement.LoadAsync(System.IO.TextReader textReader, System.Xml.Linq.LoadOptions options, System.Threading.CancellationToken cancellationToken)
  • System.Xml.Linq.XElement.LoadAsync(System.Xml.XmlReader reader, System.Xml.Linq.LoadOptions options, System.Threading.CancellationToken cancellationToken)
  • System.Xml.Linq.XElement.SaveAsync(System.IO.Stream stream, System.Xml.Linq.SaveOptions options, System.Threading.CancellationToken cancellationToken)
  • System.Xml.Linq.XElement.SaveAsync(System.IO.TextWriter textWriter, System.Xml.Linq.SaveOptions options, System.Threading.CancellationToken cancellationToken)
  • System.Xml.Linq.XElement.SaveAsync(System.Xml.XmlWriter writer, System.Threading.CancellationToken cancellationToken)
  • System.Xml.Linq.XNode.ReadFromAsync(System.Xml.XmlReader reader, System.Threading.CancellationToken cancellationToken)
  • System.Xml.Linq.XNode.WriteToAsync(System.Xml.XmlWriter writer, System.Threading.CancellationToken cancellationToken)

Properties (205)

  • System.DateTimeOffset.UnixEpoch
  • System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.CSharp = "C#" (requires T:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute)
  • System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.CompositeFormat = "CompositeFormat"
  • System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.DateOnlyFormat = "DateOnlyFormat"
  • System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.DateTimeFormat = "DateTimeFormat"
  • System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.EnumFormat = "EnumFormat"
  • System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.FSharp = "F#" (requires T:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute)
  • System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.GuidFormat = "GuidFormat"
  • System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Json = "Json"
  • System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.NumericFormat = "NumericFormat"
  • System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Regex = "Regex"
  • System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.TimeOnlyFormat = "TimeOnlyFormat"
  • System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.TimeSpanFormat = "TimeSpanFormat"
  • System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Uri = "Uri"
  • System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.VisualBasic = "Visual Basic" (requires T:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute)
  • System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Xml = "Xml"
  • System.Net.Mime.MediaTypeNames.Application.FormUrlEncoded = "application/x-www-form-urlencoded"
  • System.Net.Mime.MediaTypeNames.Application.GZip = "application/gzip"
  • System.Net.Mime.MediaTypeNames.Application.Json = "application/json"
  • System.Net.Mime.MediaTypeNames.Application.JsonPatch = "application/json-patch+json"
  • System.Net.Mime.MediaTypeNames.Application.JsonSequence = "application/json-seq"
  • System.Net.Mime.MediaTypeNames.Application.Manifest = "application/manifest+json"
  • System.Net.Mime.MediaTypeNames.Application.ProblemJson = "application/problem+json"
  • System.Net.Mime.MediaTypeNames.Application.ProblemXml = "application/problem+xml"
  • System.Net.Mime.MediaTypeNames.Application.Wasm = "application/wasm"
  • System.Net.Mime.MediaTypeNames.Application.Xml = "application/xml"
  • System.Net.Mime.MediaTypeNames.Application.XmlDtd = "application/xml-dtd"
  • System.Net.Mime.MediaTypeNames.Application.XmlPatch = "application/xml-patch+xml"
  • System.Net.Mime.MediaTypeNames.Application.Yaml = "application/yaml"
  • System.Net.Mime.MediaTypeNames.Font.Collection = "font/collection"
  • System.Net.Mime.MediaTypeNames.Font.Otf = "font/otf"
  • System.Net.Mime.MediaTypeNames.Font.Sfnt = "font/sfnt"
  • System.Net.Mime.MediaTypeNames.Font.Ttf = "font/ttf"
  • System.Net.Mime.MediaTypeNames.Font.Woff = "font/woff"
  • System.Net.Mime.MediaTypeNames.Font.Woff2 = "font/woff2"
  • System.Net.Mime.MediaTypeNames.Image.Avif = "image/avif"
  • System.Net.Mime.MediaTypeNames.Image.Bmp = "image/bmp"
  • System.Net.Mime.MediaTypeNames.Image.Icon = "image/x-icon"
  • System.Net.Mime.MediaTypeNames.Image.Png = "image/png"
  • System.Net.Mime.MediaTypeNames.Image.Svg = "image/svg+xml"
  • System.Net.Mime.MediaTypeNames.Image.Webp = "image/webp"
  • System.Net.Mime.MediaTypeNames.Multipart.ByteRanges = "multipart/byteranges"
  • System.Net.Mime.MediaTypeNames.Multipart.FormData = "multipart/form-data"
  • System.Net.Mime.MediaTypeNames.Multipart.Mixed = "multipart/mixed"
  • System.Net.Mime.MediaTypeNames.Multipart.Related = "multipart/related"
  • System.Net.Mime.MediaTypeNames.Text.Css = "text/css"
  • System.Net.Mime.MediaTypeNames.Text.Csv = "text/csv"
  • System.Net.Mime.MediaTypeNames.Text.EventStream = "text/event-stream"
  • System.Net.Mime.MediaTypeNames.Text.JavaScript = "text/javascript"
  • System.Net.Mime.MediaTypeNames.Text.Markdown = "text/markdown"
  • System.Net.Mime.MediaTypeNames.Text.Rtf = "text/rtf"
  • System.Net.Mime.MediaTypeNames.Video.Mp4 = "video/mp4"
  • System.Net.Mime.MediaTypeNames.Video.Mpeg = "video/mpeg"
  • System.Net.Mime.MediaTypeNames.Video.Ogg = "video/ogg"
  • System.Net.Mime.MediaTypeNames.Video.QuickTime = "video/quicktime"
  • System.Net.Mime.MediaTypeNames.Video.WebM = "video/webm"
  • System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.RefStructs = "RefStructs"
  • System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.RequiredMembers = "RequiredMembers"
  • System.Runtime.InteropServices.UnmanagedCallersOnlyAttribute.CallConvs
  • System.Runtime.InteropServices.UnmanagedCallersOnlyAttribute.EntryPoint
  • System.ValueTuple<T1>.Item1
  • System.ValueTuple<T1, T2>.Item1
  • System.ValueTuple<T1, T2>.Item2
  • System.ValueTuple<T1, T2, T3>.Item1
  • System.ValueTuple<T1, T2, T3>.Item2
  • System.ValueTuple<T1, T2, T3>.Item3
  • System.ValueTuple<T1, T2, T3, T4>.Item1
  • System.ValueTuple<T1, T2, T3, T4>.Item2
  • System.ValueTuple<T1, T2, T3, T4>.Item3
  • System.ValueTuple<T1, T2, T3, T4>.Item4
  • System.ValueTuple<T1, T2, T3, T4, T5>.Item1
  • System.ValueTuple<T1, T2, T3, T4, T5>.Item2
  • System.ValueTuple<T1, T2, T3, T4, T5>.Item3
  • System.ValueTuple<T1, T2, T3, T4, T5>.Item4
  • System.ValueTuple<T1, T2, T3, T4, T5>.Item5
  • System.ValueTuple<T1, T2, T3, T4, T5, T6>.Item1
  • System.ValueTuple<T1, T2, T3, T4, T5, T6>.Item2
  • System.ValueTuple<T1, T2, T3, T4, T5, T6>.Item3
  • System.ValueTuple<T1, T2, T3, T4, T5, T6>.Item4
  • System.ValueTuple<T1, T2, T3, T4, T5, T6>.Item5
  • System.ValueTuple<T1, T2, T3, T4, T5, T6>.Item6
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>.Item1
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>.Item2
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>.Item3
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>.Item4
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>.Item5
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>.Item6
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7>.Item7
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>.Item1
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>.Item2
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>.Item3
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>.Item4
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>.Item5
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>.Item6
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>.Item7
  • System.ValueTuple<T1, T2, T3, T4, T5, T6, T7, TRest>.Rest
  • readonly System.Buffers.SequenceReader<T>.Consumed (requires T:System.ReadOnlyMemory`1, T:System.ReadOnlySpan`1, T:System.Span`1)
  • readonly System.Buffers.SequenceReader<T>.CurrentSpan (requires T:System.ReadOnlyMemory`1, T:System.ReadOnlySpan`1, T:System.Span`1)
  • readonly System.Buffers.SequenceReader<T>.CurrentSpanIndex (requires T:System.ReadOnlyMemory`1, T:System.ReadOnlySpan`1, T:System.Span`1)
  • readonly System.Buffers.SequenceReader<T>.End (requires T:System.ReadOnlyMemory`1, T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Buffers.SequenceReader<T>.Length (requires T:System.ReadOnlyMemory`1, T:System.ReadOnlySpan`1, T:System.Span`1)
  • readonly System.Buffers.SequenceReader<T>.Position (requires T:System.ReadOnlyMemory`1, T:System.ReadOnlySpan`1, T:System.Span`1)
  • readonly System.Buffers.SequenceReader<T>.Remaining (requires T:System.ReadOnlyMemory`1, T:System.ReadOnlySpan`1, T:System.Span`1)
  • readonly System.Buffers.SequenceReader<T>.Sequence (requires T:System.ReadOnlyMemory`1, T:System.ReadOnlySpan`1, T:System.Span`1)
  • readonly System.Buffers.SequenceReader<T>.UnreadSequence (requires T:System.ReadOnlyMemory`1, T:System.ReadOnlySpan`1, T:System.Span`1)
  • readonly System.Buffers.SequenceReader<T>.UnreadSpan (requires T:System.ReadOnlyMemory`1, T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Collections.Generic.PriorityQueue<TElement, TPriority>.Comparer
  • System.Collections.Generic.PriorityQueue<TElement, TPriority>.Count
  • System.Collections.Generic.PriorityQueue<TElement, TPriority>.UnorderedItems
  • System.Collections.Generic.ReferenceEqualityComparer.Instance
  • System.Collections.ObjectModel.ReadOnlyCollection<T>.Empty
  • System.Collections.ObjectModel.ReadOnlyDictionary<TKey, TValue>.Empty
  • System.Collections.ObjectModel.ReadOnlySet<T>.Count
  • System.Collections.ObjectModel.ReadOnlySet<T>.Empty
  • System.DateTime.Microsecond
  • System.DateTime.Nanosecond
  • System.DateTimeOffset.Microsecond
  • System.DateTimeOffset.Nanosecond
  • System.Delegate.HasSingleTarget
  • System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.Max
  • System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.Min
  • System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.ParameterValue
  • System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.AssemblyName
  • System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.Condition
  • System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.MemberSignature
  • System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.MemberTypes
  • System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.Type
  • System.Diagnostics.CodeAnalysis.DynamicDependencyAttribute.TypeName
  • System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute.MemberTypes
  • System.Diagnostics.CodeAnalysis.ExperimentalAttribute.DiagnosticId
  • System.Diagnostics.CodeAnalysis.ExperimentalAttribute.UrlFormat
  • System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue
  • System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members
  • System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members
  • System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue
  • System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName
  • System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue
  • System.Diagnostics.CodeAnalysis.RequiresAssemblyFilesAttribute.Message
  • System.Diagnostics.CodeAnalysis.RequiresAssemblyFilesAttribute.Url
  • System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute.Message
  • System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute.Url
  • System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute.Message
  • System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute.Url
  • System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Arguments
  • System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Syntax
  • System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Category
  • System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.CheckId
  • System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Justification
  • System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.MessageId
  • System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Scope
  • System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Target
  • System.Environment.ProcessId
  • System.Environment.TickCount64
  • System.Guid.AllBitsSet
  • System.ITupleInternal.Size (when any of T:System.ValueTuple, T:System.ValueTuple`1, T:System.ValueTuple`2, T:System.ValueTuple`3, T:System.ValueTuple`4, T:System.ValueTuple`5, T:System.ValueTuple`6, T:System.ValueTuple`7, T:System.ValueTuple`8 is generated)
  • System.Index.End
  • System.Index.IsFromEnd
  • System.Index.Start
  • System.Index.Value
  • System.Net.Http.HttpMethod.Query (requires T:System.Net.Http.HttpMethod)
  • System.Random.Shared
  • System.Range.All
  • System.Range.End
  • System.Range.Start
  • System.Reflection.NullabilityInfo.ElementType
  • System.Reflection.NullabilityInfo.GenericTypeArguments
  • System.Reflection.NullabilityInfo.ReadState
  • System.Reflection.NullabilityInfo.Type
  • System.Reflection.NullabilityInfo.WriteState
  • System.Runtime.CompilerServices.AsyncMethodBuilderAttribute.BuilderType
  • System.Runtime.CompilerServices.CallerArgumentExpressionAttribute.ParameterName
  • System.Runtime.CompilerServices.CollectionBuilderAttribute.BuilderType
  • System.Runtime.CompilerServices.CollectionBuilderAttribute.MethodName
  • System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.FeatureName
  • System.Runtime.CompilerServices.CompilerFeatureRequiredAttribute.IsOptional
  • System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.Text (requires T:System.ReadOnlySpan`1, T:System.Span`1)
  • System.Runtime.CompilerServices.IUnion.Value
  • System.Runtime.CompilerServices.InterpolatedStringHandlerArgumentAttribute.Arguments
  • System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute.Priority
  • System.Runtime.CompilerServices.TupleElementNamesAttribute.TransformNames
  • System.Runtime.InteropServices.ExtendedLayoutAttribute.LayoutKind
  • System.Runtime.Versioning.ObsoletedOSPlatformAttribute.Message
  • System.Runtime.Versioning.ObsoletedOSPlatformAttribute.Url
  • System.Runtime.Versioning.RequiresPreviewFeaturesAttribute.Message
  • System.Runtime.Versioning.RequiresPreviewFeaturesAttribute.Url
  • System.Runtime.Versioning.UnsupportedOSPlatformAttribute.Message
  • System.Text.Encoding.Latin1
  • System.Text.RegularExpressions.Capture.ValueSpan (requires T:System.ReadOnlySpan`1)
  • System.Text.RunePosition.Length (requires T:System.ReadOnlySpan`1, T:System.Text.Rune)
  • System.Text.RunePosition.Rune (requires T:System.ReadOnlySpan`1, T:System.Text.Rune)
  • System.Text.RunePosition.StartIndex (requires T:System.ReadOnlySpan`1, T:System.Text.Rune)
  • System.Text.RunePosition.WasReplaced (requires T:System.ReadOnlySpan`1, T:System.Text.Rune)
  • System.Text.StringBuilderRuneEnumerator.Current (requires T:System.Text.Rune)
  • System.Threading.Lock.IsHeldByCurrentThread
  • System.Threading.PeriodicTimer.Period (requires T:System.Threading.ITimer, T:System.Threading.Tasks.Sources.IValueTaskSource`1, T:System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags, T:System.Threading.Tasks.Sources.ValueTaskSourceStatus, T:System.Threading.Tasks.ValueTask`1, T:System.TimeProvider)
  • System.Threading.Tasks.Task.IsCompletedSuccessfully
  • System.Threading.Tasks.ValueTask.CompletedTask (requires T:System.Threading.Tasks.ValueTask)
  • System.TimeOnly.Microsecond (requires T:System.TimeOnly)
  • System.TimeOnly.Nanosecond (requires T:System.TimeOnly)
  • System.TimeProvider.LocalTimeZone (requires T:System.IAsyncDisposable, T:System.Threading.ITimer, T:System.Threading.Tasks.ValueTask)
  • System.TimeProvider.System (requires T:System.IAsyncDisposable, T:System.Threading.ITimer, T:System.Threading.Tasks.ValueTask)
  • System.TimeProvider.TimestampFrequency (requires T:System.IAsyncDisposable, T:System.Threading.ITimer, T:System.Threading.Tasks.ValueTask)
  • System.TimeSpan.Microseconds
  • System.TimeSpan.Nanoseconds
  • System.Type.IsGenericMethodParameter

Contribution

How to add a new polyfill
  • Create a new file named <xml documentation id>.cs in the project Meziantou.Polyfill.Editor
  • Run Meziantou.Polyfill.Generator

Notes:

  • All files must be self contained. Use a file class if needed.
  • If you need to generate a file only when another polyfill is generated, add // when <xml documentation id> in the file
  • If xml documentation id is too long, you can use // XML-DOC: <xml documentation id> in the file
  • If you are not sure about the xml documentation id, you can run the generator dotnet run --project Meziantou.Polyfill.Generator -- --generate-all-symbols and open the file Meziantou.Polyfill.Editor\_AllSymbols.txt
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (9)

Showing the top 9 popular GitHub repositories that depend on Meziantou.Polyfill:

Repository Stars
riok/mapperly
A .NET source generator for generating object mappings. No runtime reflection.
linq2db/linq2db
Linq to database provider.
IronLanguages/ironpython3
Implementation of Python 3.x for .NET Framework that is built on top of the Dynamic Language Runtime.
TASEmulators/BizHawk
BizHawk is a multi-system emulator written in C#. BizHawk provides nice features for casual gamers such as full screen, and joypad support in addition to full rerecording and debugging tools for all system cores.
bUnit-dev/bUnit
bUnit is a testing library for Blazor components that make tests look, feel, and runs like regular unit tests. bUnit makes it easy to render and control a component under test’s life-cycle, pass parameter and inject services into it, trigger event handlers, and verify the rendered markup from the component using a built-in semantic HTML comparer.
meziantou/Meziantou.Analyzer
A powerful C# Roslyn analyzer that uses static analysis to detect bugs, surface security issues, and enforce best practices—helping developers and AI write more reliable code.
meziantou/Meziantou.Framework
ngraziano/SharpRTSP
A RTSP handling library
IronLanguages/dlr
Dynamic Language Runtime
Version Downloads Last Updated
1.0.156 0 6/27/2026
1.0.155 1,057 6/25/2026
1.0.154 900 6/23/2026
1.0.153 695 6/22/2026
1.0.152 1,019 6/18/2026
1.0.151 2,919 6/13/2026
1.0.150 602 6/10/2026
1.0.149 139 6/10/2026
1.0.148 391 6/8/2026
1.0.147 1,966 6/8/2026
1.0.146 186 6/8/2026
1.0.145 245 6/7/2026
1.0.144 152 6/6/2026
1.0.143 153 6/6/2026
1.0.142 138 6/6/2026
1.0.141 152 6/5/2026
1.0.140 12,031 5/28/2026
1.0.139 143 5/28/2026
1.0.138 150 5/28/2026
1.0.137 636 5/28/2026
Loading failed