1 write to _symbol
Microsoft.CodeAnalysis.Features (1)
MetadataAsSource\AbstractMetadataAsSourceService.WrappedMethodSymbol.cs (1)
22_symbol = methodSymbol;
43 references to _symbol
Microsoft.CodeAnalysis.Features (43)
MetadataAsSource\AbstractMetadataAsSourceService.WrappedMethodSymbol.cs (43)
25public int Arity => _symbol.Arity; 27public ISymbol AssociatedSymbol => _symbol.AssociatedSymbol; 29public INamedTypeSymbol AssociatedAnonymousDelegate => _symbol.AssociatedAnonymousDelegate; 31public IMethodSymbol ConstructedFrom => _symbol.ConstructedFrom; 33public bool IsReadOnly => _symbol.IsReadOnly; 34public bool IsInitOnly => _symbol.IsInitOnly; 36public System.Reflection.MethodImplAttributes MethodImplementationFlags => _symbol.MethodImplementationFlags; 44: _symbol.ExplicitInterfaceImplementations; 48public bool HidesBaseMethodsByName => _symbol.HidesBaseMethodsByName; 50public bool IsExtensionMethod => _symbol.IsExtensionMethod; 52public bool IsGenericMethod => _symbol.IsGenericMethod; 54public bool IsAsync => _symbol.IsAsync; 56public MethodKind MethodKind => _symbol.MethodKind; 66public IMethodSymbol OverriddenMethod => _symbol.OverriddenMethod; 68public ImmutableArray<IParameterSymbol> Parameters => _symbol.Parameters; 70public IMethodSymbol PartialDefinitionPart => _symbol.PartialDefinitionPart; 72public IMethodSymbol PartialImplementationPart => _symbol.PartialImplementationPart; 74public bool IsPartialDefinition => _symbol.IsPartialDefinition; 76public ITypeSymbol ReceiverType => _symbol.ReceiverType; 78public NullableAnnotation ReceiverNullableAnnotation => _symbol.ReceiverNullableAnnotation; 82=> _symbol.ReducedFrom; 87return _symbol.GetTypeInferredDuringReduction(reducedFromTypeParameter); 90public bool ReturnsVoid => _symbol.ReturnsVoid; 92public bool ReturnsByRef => _symbol.ReturnsByRef; 94public bool ReturnsByRefReadonly => _symbol.ReturnsByRefReadonly; 96public RefKind RefKind => _symbol.RefKind; 98public ITypeSymbol ReturnType => _symbol.ReturnType; 100public NullableAnnotation ReturnNullableAnnotation => _symbol.ReturnNullableAnnotation; 103=> _symbol.GetReturnTypeAttributes(); 105public ImmutableArray<CustomModifier> RefCustomModifiers => _symbol.RefCustomModifiers; 107public ImmutableArray<CustomModifier> ReturnTypeCustomModifiers => _symbol.ReturnTypeCustomModifiers; 109public ImmutableArray<ITypeSymbol> TypeArguments => _symbol.TypeArguments; 111public ImmutableArray<NullableAnnotation> TypeArgumentNullableAnnotations => _symbol.TypeArgumentNullableAnnotations; 113public ImmutableArray<ITypeParameterSymbol> TypeParameters => _symbol.TypeParameters; 116=> _symbol.Construct(typeArguments); 119=> _symbol.Construct(typeArguments, typeArgumentNullableAnnotations); 122=> _symbol.GetDllImportData(); 127return _symbol.ReduceExtensionMethod(receiverType); 130public bool IsVararg => _symbol.IsVararg; 132public bool IsCheckedBuiltin => _symbol.IsCheckedBuiltin; 134public bool IsConditional => _symbol.IsConditional; 136public SignatureCallingConvention CallingConvention => _symbol.CallingConvention; 138public ImmutableArray<INamedTypeSymbol> UnmanagedCallingConventionTypes => _symbol.UnmanagedCallingConventionTypes;