1 write to _handle
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
316_handle = handle;
47 references to _handle
Microsoft.CodeAnalysis.CSharp (47)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (47)
117if (this.ContainingPEModule.HasAnyCustomAttributes(_handle)) 600return _handle; 606get { return MetadataTokens.GetToken(_handle); } 621uncommon.lazyHasInterpolatedStringHandlerAttribute = ContainingPEModule.Module.HasInterpolatedStringHandlerAttribute(_handle).ToThreeState(); 640uncommon.lazyHasEmbeddedAttribute = ContainingPEModule.Module.HasCodeAnalysisEmbeddedAttribute(_handle).ToThreeState(); 659uncommon.lazyHasCompilerLoweringPreserveAttribute = ContainingPEModule.Module.HasCompilerLoweringPreserveAttribute(_handle).ToThreeState(); 714TypeSymbol decodedType = DynamicTypeDecoder.TransformType(baseType, 0, _handle, moduleSymbol); 715decodedType = NativeIntegerTypeDecoder.TransformType(decodedType, _handle, moduleSymbol, this); 716decodedType = TupleTypeDecoder.DecodeTupleTypesIfApplicable(decodedType, _handle, moduleSymbol); 717baseType = (NamedTypeSymbol)NullableTypeDecoder.TransformType(TypeWithAnnotations.Create(decodedType), _handle, moduleSymbol, accessSymbol: this, nullableContext: this).Type; 743EntityHandle token = moduleSymbol.Module.GetBaseTypeOfTypeOrThrow(_handle); 763var interfaceImpls = moduleSymbol.Module.GetInterfaceImplementationsOrThrow(_handle); 944value = ContainingPEModule.Module.HasNullableContextAttribute(_handle, out byte arg) ? 977foreach (var methodDef in module.GetMethodsOfTypeOrThrow(_handle)) 992foreach (var propertyDef in module.GetPropertiesOfTypeOrThrow(_handle)) 1007foreach (var eventDef in module.GetEventsOfTypeOrThrow(_handle)) 1022foreach (var fieldDef in module.GetFieldsOfTypeOrThrow(_handle)) 1088var hasRequiredMemberAttribute = ContainingPEModule.Module.HasAttribute(_handle, AttributeDescription.RequiredMemberAttribute); 1118foreach (var fieldDef in module.GetFieldsOfTypeOrThrow(_handle)) 1238foreach (var handle in this.ContainingPEModule.Module.GetFieldsOfTypeOrThrow(_handle)) 1298foreach (var methodDef in module.GetMethodsOfTypeOrThrow(_handle)) 1405foreach (var fieldDef in module.GetFieldsOfTypeOrThrow(_handle)) 1489foreach (var fieldDef in module.GetFieldsOfTypeOrThrow(_handle)) 1929bool moduleHasExtension = module.HasExtensionAttribute(_handle, ignoreCase: false); 2041foreach (var methodHandle in module.GetMethodsOfTypeOrThrow(_handle)) 2127nestedTypeDefs = module.GetNestedTypeDefsOrThrow(_handle); 2206foreach (var fieldRid in module.GetFieldsOfTypeOrThrow(_handle)) 2254foreach (var methodHandle in module.GetMethodsOfTypeOrThrow(_handle)) 2256if (isOrdinaryEmbeddableStruct || module.ShouldImportMethod(_handle, methodHandle, moduleSymbol.ImportOptions) || 2278foreach (var propertyDef in module.GetPropertiesOfTypeOrThrow(_handle)) 2284PEMethodSymbol getMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Getter); 2285PEMethodSymbol setMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Setter); 2310foreach (var eventRid in module.GetEventsOfTypeOrThrow(_handle)) 2317PEMethodSymbol addMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Adder); 2318PEMethodSymbol removeMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Remover); 2389if (this.ContainingPEModule.Module.HasRequiredAttributeAttribute(_handle)) 2471this.ContainingPEModule.Module.HasDefaultMemberAttribute(_handle, out defaultMemberName); 2506return ContainingPEModule.Module.HasGuidAttribute(_handle, out guidString); 2513return this.ContainingPEModule.Module.GetTypeLayout(_handle); 2558isByRefLike = module.HasIsByRefLikeAttribute(_handle).ToThreeState(); 2589isReadOnly = module.HasIsReadOnlyAttribute(_handle).ToThreeState(); 2646ImmutableArray<string> conditionalSymbols = this.ContainingPEModule.Module.GetConditionalAttributeValues(_handle); 2665ObsoleteAttributeHelpers.InitializeObsoleteDataFromMetadata(ref uncommon.lazyObsoleteAttributeData, _handle, ContainingPEModule, ignoreByRefLikeMarker, ignoreRequiredMemberMarker: false); 2688if (this.ContainingPEModule.Module.HasAttributeUsageAttribute(_handle, new MetadataDecoder(ContainingPEModule), out AttributeUsageInfo info)) 2748if (this.ContainingPEModule.Module.HasInlineArrayAttribute(_handle, out length) && length > 0) 2790if (ContainingPEModule.Module.HasCollectionBuilderAttribute(_handle, out string builderTypeName, out string methodName)) 3022var nestedType = Create(this.ContainingPEModule, (PENamespaceSymbol)this.ContainingNamespace, _handle, null);