1 type derived from Tuple
Microsoft.Maui.Controls (1)
MessagingCenter.cs (1)
66 class Subscription : Tuple<WeakReference, MaybeWeakReference, MethodInfo, Filter>
4 instantiations of Tuple
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Infrastructure\HttpUtilities.cs (2)
35_knownMethods[GetKnownMethodIndex(knownMethodUlong)] = new Tuple<ulong, ulong, HttpMethod, int>(mask, knownMethodUlong, knownMethod, length); 42var invalidHttpMethod = new Tuple<ulong, ulong, HttpMethod, int>(_mask8Chars, 0ul, HttpMethod.Custom, 0);
System.Data.Common (1)
System\Data\Common\DataStorage.cs (1)
515return new Tuple<bool, bool, bool, bool>(
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Tuple.cs (1)
41return new Tuple<T1, T2, T3, T4>(item1, item2, item3, item4);
25 references to Tuple
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Infrastructure\HttpUtilities.cs (2)
42var invalidHttpMethod = new Tuple<ulong, ulong, HttpMethod, int>(_mask8Chars, 0ul, HttpMethod.Custom, 0); 231var knownMethod = _knownMethods[index];
Internal\Infrastructure\HttpUtilities.Generated.cs (2)
35private static readonly Tuple<ulong, ulong, HttpMethod, int>[] _knownMethods = 36new Tuple<ulong, ulong, HttpMethod, int>[17];
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
1202[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Tuple<,,,>))]
netstandard (1)
netstandard.cs (1)
2203[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Tuple<,,,>))]
System.Data.Common (5)
System\Data\Common\DataStorage.cs (5)
127private static readonly Func<Type, Tuple<bool, bool, bool, bool>> s_inspectTypeForInterfaces = InspectTypeForInterfaces; 128private static readonly ConcurrentDictionary<Type, Tuple<bool, bool, bool, bool>> s_typeImplementsInterface = new ConcurrentDictionary<Type, Tuple<bool, bool, bool, bool>>(); 498Tuple<bool, bool, bool, bool> interfaces = s_typeImplementsInterface.GetOrAdd(dataType, s_inspectTypeForInterfaces); 511private static Tuple<bool, bool, bool, bool> InspectTypeForInterfaces(Type dataType)
System.Private.CoreLib (13)
src\libraries\System.Private.CoreLib\src\System\Tuple.cs (3)
39public static Tuple<T1, T2, T3, T4> Create<T1, T2, T3, T4>(T1 item1, T2 item2, T3 item3, T4 item4) 510if (other is not Tuple<T1, T2, T3, T4> objTuple) 532if (other is not Tuple<T1, T2, T3, T4> objTuple)
src\libraries\System.Private.CoreLib\src\System\TupleExtensions.cs (9)
58this Tuple<T1, T2, T3, T4> value, 177this Tuple<T1, T2, T3, T4, T5, T6, T7, Tuple<T8, T9, T10, T11>> value, 345this Tuple<T1, T2, T3, T4, T5, T6, T7, Tuple<T8, T9, T10, T11, T12, T13, T14, Tuple<T15, T16, T17, T18>>> value, 495this Tuple<T1, T2, T3, T4> value) 568this Tuple<T1, T2, T3, T4, T5, T6, T7, Tuple<T8, T9, T10, T11>> value) 648this Tuple<T1, T2, T3, T4, T5, T6, T7, Tuple<T8, T9, T10, T11, T12, T13, T14, Tuple<T15, T16, T17, T18>>> value) 726public static Tuple<T1, T2, T3, T4> 799public static Tuple<T1, T2, T3, T4, T5, T6, T7, Tuple<T8, T9, T10, T11>> 879public static Tuple<T1, T2, T3, T4, T5, T6, T7, Tuple<T8, T9, T10, T11, T12, T13, T14, Tuple<T15, T16, T17, T18>>>
src\libraries\System.Private.CoreLib\src\System\TupleSlim.cs (1)
36/// <summary>Simple alternative to <see cref="Tuple{T1, T2, T3, T4}"/> for use in corelib.</summary>
System.Runtime (1)
artifacts\obj\System.Runtime\Debug\net10.0\System.Runtime.Forwards.cs (1)
852[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Tuple<,,,>))]