1 type derived from Tuple
Microsoft.Maui.Controls (1)
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.Private.CoreLib (1)
25 references to Tuple
Microsoft.AspNetCore.Server.Kestrel.Core (4)
mscorlib (1)
netstandard (1)
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>>>
System.Runtime (1)