45 references to Tuple
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReaderAsync.cs (2)
768tuple = new Tuple<XmlSchemaType, string, object>(xmlType, originalString, typedValue); 816tuple = new Tuple<XmlSchemaType, string, object>(xmlType, originalString, typedValue);
Microsoft.AspNetCore.Owin (1)
WebSockets\WebSocketAdapter.cs (1)
86return new WebSocketReceiveTuple(
Microsoft.CodeAnalysis (1)
StrongName\StrongNameKeys.cs (1)
159cachedKeyPair = new Tuple<ImmutableArray<byte>, ImmutableArray<byte>, RSAParameters?>(keyPair, publicKey, privateKey);
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Features\UnifiedSuggestions\UnifiedSuggestedActionsSource.cs (2)
197return new CodeFixGroupKey( 201return new CodeFixGroupKey(diag, fix.Action.Priority, null);
Microsoft.CodeAnalysis.UnitTests (33)
Collections\ImmutableSetTest.cs (33)
298new SetTriad(SetWith<int>(), Array.Empty<int>(), true), 299new SetTriad(SetWith<int>(5), new int[] { 5 }, true), 300new SetTriad(SetWith<int>(5), new int[] { 5, 5 }, true), 301new SetTriad(SetWith<int>(5, 8), new int[] { 5, 5 }, false), 302new SetTriad(SetWith<int>(5, 8), new int[] { 5, 7 }, false), 303new SetTriad(SetWith<int>(5, 8), new int[] { 5, 8 }, true), 304new SetTriad(SetWith<int>(5), Array.Empty<int>(), false), 305new SetTriad(SetWith<int>(), new int[] { 5 }, false), 306new SetTriad(SetWith<int>(5, 8), new int[] { 5 }, false), 307new SetTriad(SetWith<int>(5), new int[] { 5, 8 }, false), 308new SetTriad(SetWith<int>(5, 8), SetWith<int>(5, 8), true), 316new SetTriad(Array.Empty<int>(), Array.Empty<int>(), false), 317new SetTriad(new int[] { 1 }, Array.Empty<int>(), false), 318new SetTriad(new int[] { 1 }, new int[] { 2 }, false), 319new SetTriad(new int[] { 1 }, new int[] { 2, 3 }, false), 320new SetTriad(new int[] { 1 }, new int[] { 1, 2 }, true), 321new SetTriad(Array.Empty<int>(), new int[] { 1 }, true), 329new SetTriad(Array.Empty<int>(), Array.Empty<int>(), true), 330new SetTriad(new int[] { 1 }, new int[] { 1 }, true), 331new SetTriad(new int[] { 1, 2 }, new int[] { 1, 2 }, true), 332new SetTriad(new int[] { 1 }, Array.Empty<int>(), false), 333new SetTriad(new int[] { 1 }, new int[] { 2 }, false), 334new SetTriad(new int[] { 1 }, new int[] { 2, 3 }, false), 347new SetTriad(Array.Empty<int>(), Array.Empty<int>(), false), 348new SetTriad(Array.Empty<int>(), new int[] { 1 }, false), 349new SetTriad(new int[] { 1 }, new int[] { 2 }, false), 350new SetTriad(new int[] { 1 }, new int[] { 2, 3 }, false), 351new SetTriad(new int[] { 1, 2 }, new int[] { 3 }, false), 352new SetTriad(new int[] { 1 }, new int[] { 1, 2 }, true), 353new SetTriad(new int[] { 1, 2 }, new int[] { 1 }, true), 354new SetTriad(new int[] { 1 }, new int[] { 1 }, true), 355new SetTriad(new int[] { 1, 2 }, new int[] { 2, 3, 4 }, true), 384return new Tuple<IEnumerable<T>, IEnumerable<T>, bool>(scenario.Item2, scenario.Item1, scenario.Item3);
Microsoft.Maui.Controls (1)
MessagingCenter.cs (1)
33 public Sender(string message, Type senderType, Type argType) : base(message, senderType, argType)
Microsoft.ML.TimeSeries (1)
RootCauseAnalyzer.cs (1)
125return new Tuple<PointTree, PointTree, Dictionary<Dictionary<string, Object>, TimeSeriesPoint>>(pointTree, anomalyTree, dimPointMapping);
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Tuple.cs (1)
36return new Tuple<T1, T2, T3>(item1, item2, item3);
System.Xaml (1)
System\Xaml\Schema\ReferenceEqualityComparer.cs (1)
31: base(item1, item2, item3)
xunit.assert (2)
CollectionAsserts.cs (2)
84 errors.Add(new Tuple<int, string, Exception>(idx, ArgumentFormatter.Format(item), ex)); 138 errors.Add(new Tuple<int, string, Exception>(idx, ArgumentFormatter.Format(item), ex));