1 write to TypeNullableContextValue
Microsoft.Cci.Extensions (1)
Writers\CSharp\CSharpWriter.cs (1)
123_declarationWriter.TypeNullableContextValue = value;
4 references to TypeNullableContextValue
Microsoft.Cci.Extensions (4)
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);
Writers\CSharp\CSDeclarationWriter.Types.cs (1)
74if (type.IsGeneric) WriteGenericContraints(type.GenericParameters, TypeNullableContextValue); // Delegates are special, and the NullableContextValue we should fallback to is the delegate type one, not the invoke method one.