Base:
property
HasUnsupportedMetadata
Microsoft.CodeAnalysis.CSharp.Symbol.HasUnsupportedMetadata
32 references to HasUnsupportedMetadata
Microsoft.CodeAnalysis.CSharp (5)
Binder\Semantics\OverloadResolution\OverloadResolution.cs (1)
703if (constructor.HasUnsupportedMetadata)
CodeGen\EmitArrayInitializer.cs (3)
460Debug.Assert(!rosPointerCtor.HasUnsupportedMetadata); 629Debug.Assert(!createSpan.HasUnsupportedMetadata); 651Debug.Assert(!rosArrayCtor.HasUnsupportedMetadata);
Symbols\Synthesized\Records\SynthesizedRecordCopyCtor.cs (1)
81!member.HasUnsupportedMetadata &&
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (2)
CodeGen\CodeGenFunctionPointersTests.cs (2)
305Assert.True(signature.HasUnsupportedMetadata); 381Assert.True(signature.HasUnsupportedMetadata);
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (12)
Semantics\InitOnlyMemberTests.cs (12)
3275Assert.True(property0.SetMethod.HasUnsupportedMetadata); 3366Assert.True(property0.SetMethod.HasUnsupportedMetadata); 3482Assert.True(property0.SetMethod.HasUnsupportedMetadata); 3575Assert.True(property0.SetMethod.HasUnsupportedMetadata); 3629Assert.True(method.HasUnsupportedMetadata); 3688Assert.True(method.HasUnsupportedMetadata); 3736Assert.True(method0.HasUnsupportedMetadata); 3896Assert.True(property0.GetMethod.HasUnsupportedMetadata); 3900Assert.True(property0.SetMethod.HasUnsupportedMetadata); 3985Assert.True(property0.GetMethod.HasUnsupportedMetadata); 3989Assert.True(property0.SetMethod.HasUnsupportedMetadata); 4055Assert.True(property.GetMethod.HasUnsupportedMetadata);
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (13)
Symbols\CSharpCompilerFeatureRequiredTests.cs (13)
146Assert.True(onType.GetMember<MethodSymbol>("M").HasUnsupportedMetadata); 150Assert.True(onMethod.GetMember<MethodSymbol>("M").HasUnsupportedMetadata); 154Assert.True(onMethodReturn.GetMember<MethodSymbol>("M").HasUnsupportedMetadata); 159Assert.True(onParameterMethod.HasUnsupportedMetadata); 174Assert.False(onPropertyGetterProperty.SetMethod.HasUnsupportedMetadata); 175Assert.True(onPropertyGetterProperty.GetMethod.HasUnsupportedMetadata); 181Assert.True(onPropertySetterProperty.SetMethod.HasUnsupportedMetadata); 182Assert.False(onPropertySetterProperty.GetMethod.HasUnsupportedMetadata); 192Assert.True(onEventAdderEvent.AddMethod!.HasUnsupportedMetadata); 193Assert.False(onEventAdderEvent.RemoveMethod!.HasUnsupportedMetadata); 199Assert.False(onEventRemoverEvent.AddMethod!.HasUnsupportedMetadata); 200Assert.True(onEventRemoverEvent.RemoveMethod!.HasUnsupportedMetadata); 216Assert.True(onMethodTypeParameterMethod.HasUnsupportedMetadata);