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];
31 references to Right
Microsoft.DotNet.ApiCompatibility (31)
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 (7)
41if (am.Left == null && am.Right[rightIndex] == null) 50rightSymbol = am.Right[rightIndex]?.Element; 55am.Right[rightIndex]?.MetadataInformation ?? MetadataInformation.DefaultRight, 64rightSymbol = tm.Right[rightIndex]; 66tm.Right[rightIndex], 81rightSymbol = mm.Right[rightIndex]; 85mm.Right[rightIndex],