10 references to NotAnnotatedStatus
System.Private.CoreLib (10)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\NullabilityInfoContext.cs (10)
22
private readonly Dictionary<Module,
NotAnnotatedStatus
> _publicOnlyModules = new();
283
if (!_publicOnlyModules.TryGetValue(module, out
NotAnnotatedStatus
value))
289
if (value ==
NotAnnotatedStatus
.None)
294
if ((isPrivate || isFamilyAndAssembly) && value.HasFlag(
NotAnnotatedStatus
.Private) ||
295
isAssembly && value.HasFlag(
NotAnnotatedStatus
.Internal))
303
private static
NotAnnotatedStatus
PopulateAnnotationInfo(IList<CustomAttributeData> customAttributes)
313
return
NotAnnotatedStatus
.Internal |
NotAnnotatedStatus
.Private;
317
return
NotAnnotatedStatus
.Private;
322
return
NotAnnotatedStatus
.None;