1 implementation of IncludeInternalSymbols
Microsoft.DotNet.ApiCompatibility (1)
ApiComparerSettings.cs (1)
30public bool IncludeInternalSymbols { get; set; }
6 references to IncludeInternalSymbols
Microsoft.DotNet.ApiCompatibility (6)
Rules\CannotAddAbstractMember.cs (1)
34if (leftContainingType.TypeKind != TypeKind.Interface && !leftContainingType.IsEffectivelySealed(_settings.IncludeInternalSymbols))
Rules\CannotAddOrRemoveVirtualKeyword.cs (1)
53if (leftContainingType.IsEffectivelySealed(_settings.IncludeInternalSymbols))
Rules\CannotChangeVisibility.cs (1)
32if (!_settings.IncludeInternalSymbols)
Rules\CannotRemoveBaseTypeOrInterface.cs (1)
81if (!leftInterface.IsVisibleOutsideOfAssembly(_settings.IncludeInternalSymbols) && leftInterface.TypeKind != TypeKind.Error)
Rules\CannotSealType.cs (2)
28bool isLeftSealed = left.IsEffectivelySealed(_settings.IncludeInternalSymbols); 29bool isRightSealed = right.IsEffectivelySealed(_settings.IncludeInternalSymbols);