1 write to ContainingType
Microsoft.Cci.Extensions (1)
Mappings\MemberMapping.cs (1)
13this.ContainingType = containingType;
6 references to ContainingType
Microsoft.Cci.Extensions (1)
Filters\CommonTypesMappingDifferenceFilter.cs (1)
48return _baseFilter.Include(member) && Include(member.ContainingType);
Microsoft.DotNet.ApiCompat.Core (5)
Rules\Compat\CannotAddAbstractMembers.cs (2)
23ITypeDefinition contractType = mapping.ContainingType[1]; 25if (contractType != null && (contractType.IsEffectivelySealed() || (contractType.IsInterface && mapping.ContainingType[0].IsInterface)))
Rules\Compat\MembersMustExist.cs (1)
34ITypeDefinition contractType = mapping.ContainingType[0];
Rules\ParameterTypeCannotChange.cs (2)
27IMethodDefinition match = FindBestMatch(method1, mapping.ContainingType, 1, 0); 39IMethodDefinition match = FindBestMatch(method2, mapping.ContainingType, 0, 1);