1 write to ModuleNullableContextValue
Microsoft.Cci.Extensions (1)
Writers\CSharp\CSharpWriter.cs (1)
83_declarationWriter.ModuleNullableContextValue = assembly.ModuleAttributes.GetCustomAttributeArgumentValue<byte?>(CSharpCciExtensions.NullableContextAttributeFullName);
3 references to ModuleNullableContextValue
Microsoft.Cci.Extensions (3)
Writers\CSharp\CSDeclarationWriter.cs (1)
462nullableAttributeArgument = nullableAttribute.GetAttributeArgumentValue<byte>() ?? methodNullableContextValue ?? TypeNullableContextValue ?? ModuleNullableContextValue;
Writers\CSharp\CSDeclarationWriter.Generics.cs (2)
61object nullableAttributeValue = nullableAttribute.GetAttributeArgumentValue<byte>() ?? methodNullableContextValue ?? TypeNullableContextValue ?? ModuleNullableContextValue; 102yield return () => WriteTypeName(constraint, noSpace: true, nullableAttributeArgument: nullableAttributeValue ?? methodNullableContextValue ?? TypeNullableContextValue ?? ModuleNullableContextValue);