2 overrides of GetNullableContextValue
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Metadata\PE\PEMethodSymbol.cs (1)
1080
internal override byte?
GetNullableContextValue
()
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
1005
internal override byte?
GetNullableContextValue
()
15 references to GetNullableContextValue
Microsoft.CodeAnalysis.CSharp (15)
Symbols\Metadata\PE\NullableTypeDecoder.cs (1)
40
byte? value = nullableContext.
GetNullableContextValue
();
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
1012
_container.
GetNullableContextValue
();
Symbols\Metadata\PE\PEParameterSymbol.cs (1)
266
byte? value = nullableContext.
GetNullableContextValue
();
Symbols\Metadata\PE\PETypeParameterSymbol.cs (1)
481
return _containingSymbol.
GetNullableContextValue
() ?? 0;
Symbols\MethodSymbol.cs (1)
1188
AddSynthesizedAttribute(ref attributes, moduleBuilder.SynthesizeNullableAttributeIfNecessary(this,
GetNullableContextValue
(), type));
Symbols\Source\FieldSymbolWithAttributesAndModifiers.cs (1)
421
AddSynthesizedAttribute(ref attributes, moduleBuilder.SynthesizeNullableAttributeIfNecessary(this, ContainingType.
GetNullableContextValue
(), type));
Symbols\Source\SourceEventSymbol.cs (1)
399
AddSynthesizedAttribute(ref attributes, moduleBuilder.SynthesizeNullableAttributeIfNecessary(this, containingType.
GetNullableContextValue
(), type));
Symbols\Source\SourceParameterSymbolBase.cs (1)
131
AddSynthesizedAttribute(ref attributes, moduleBuilder.SynthesizeNullableAttributeIfNecessary(parameter, parameter.
GetNullableContextValue
(), type));
Symbols\Source\SourcePropertySymbolBase.cs (1)
1416
AddSynthesizedAttribute(ref attributes, moduleBuilder.SynthesizeNullableAttributeIfNecessary(this, ContainingType.
GetNullableContextValue
(), type));
Symbols\Source\SourceTypeParameterSymbol.cs (1)
400
moduleBuilder.SynthesizeNullableAttributeIfNecessary(
GetNullableContextValue
(), GetSynthesizedNullableAttributeValue()));
Symbols\Symbol.cs (2)
1634
return GetLocalNullableContextValue() ?? ContainingSymbol?.
GetNullableContextValue
();
1709
byte containingValue = ContainingSymbol?.
GetNullableContextValue
() ?? 0;
Symbols\Synthesized\SynthesizedFieldSymbolBase.cs (1)
85
AddSynthesizedAttribute(ref attributes, moduleBuilder.SynthesizeNullableAttributeIfNecessary(this, ContainingType.
GetNullableContextValue
(), typeWithAnnotations));
Symbols\Synthesized\SynthesizedParameterSymbol.cs (1)
179
AddSynthesizedAttribute(ref attributes, moduleBuilder.SynthesizeNullableAttributeIfNecessary(this,
GetNullableContextValue
(), type));
Symbols\TypeSymbolExtensions.cs (1)
2133
addIfNotNull(builder, moduleBuilder.SynthesizeNullableAttributeIfNecessary(declaringSymbol, declaringSymbol.
GetNullableContextValue
(), type));