Implemented interface member:
property
Right
Microsoft.DotNet.ApiCompatibility.Mapping.IElementMapper<T>.Right
1 write to Right
Microsoft.DotNet.ApiCompatibility (1)
Mapping\ElementMapper.cs (1)
44Right = new T[rightSetSize];
34 references to Right
Microsoft.DotNet.ApiCompatibility (29)
Mapping\AssemblyMapper.cs (3)
36for (int i = 0; i < Right.Length; i++) 38AddOrCreateMappers(Right[i], ElementSide.Right, i); 89mapper = new NamespaceMapper(RuleRunner, Settings, Right.Length, this, typeForwardsOnly: typeForwardsOnly);
Mapping\AssemblySetMapper.cs (3)
32for (int i = 0; i < Right.Length; i++) 34AddOrCreateMappers(Right[i], ElementSide.Right, i); 49mapper = new AssemblyMapper(RuleRunner, Settings, Right.Length, this);
Mapping\ElementMapper.cs (5)
56if ((uint)setIndex >= Right.Length) 57throw new ArgumentOutOfRangeException(nameof(setIndex), string.Format(Resources.IndexShouldBeWithinSetSizeRange, nameof(Right), Right.Length - 1)); 59Right[setIndex] = element; 71return Right[setIndex];
Mapping\NamespaceMapper.cs (3)
56for (int i = 0; i < Right.Length; i++) 58AddOrCreateMappers(Right[i], ElementSide.Right, i); 96mapper = new TypeMapper(RuleRunner, Settings, Right.Length, this, null);
Mapping\TypeMapper.cs (10)
59if (Right.Length == 1 && Right[0] == null) 62for (int i = 0; i < Right.Length; i++) 64if (Right[i] != null) 82for (int i = 0; i < Right.Length; i++) 84AddOrCreateMappers(Right[i], ElementSide.Right, i); 101mapper = new TypeMapper(RuleRunner, Settings, Right.Length, ContainingNamespace, this); 121for (int i = 0; i < Right.Length; i++) 123AddOrCreateMappers(Right[i], ElementSide.Right, i); 144mapper = new MemberMapper(RuleRunner, Settings, Right.Length, this);
Rules\RuleRunner.cs (5)
32if (am.Left == null && am.Right[rightIndex] == null) 41am.Right[rightIndex]?.Element, 43am.Right[rightIndex]?.MetadataInformation ?? MetadataInformation.DefaultRight, 52tm.Right[rightIndex], 68mm.Right[rightIndex],
Microsoft.DotNet.ApiCompatibility.Tests (5)
Mapping\AssemblyMapperTests.cs (1)
28Assert.Equal(rightSetSize, assemblyMapper.Right.Length);
Mapping\AssemblySetMapperTests.cs (1)
26Assert.Equal(rightSetSize, assemblySetMapper.Right.Length);
Mapping\MemberMapperTests.cs (1)
24Assert.Equal(rightSetSize, memberMapper.Right.Length);
Mapping\NamespaceMapperTests.cs (1)
28Assert.Equal(rightSetSize, namespaceMapper.Right.Length);
Mapping\TypeMapperTests.cs (1)
30Assert.Equal(rightSetSize, typeMapper.Right.Length);