1 write to _handle
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
329_handle = handle;
49 references to _handle
Microsoft.CodeAnalysis.CSharp (49)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (49)
117if (this.ContainingPEModule.HasAnyCustomAttributes(_handle)) 629return _handle; 635get { return MetadataTokens.GetToken(_handle); } 650uncommon.lazyHasInterpolatedStringHandlerAttribute = ContainingPEModule.Module.HasInterpolatedStringHandlerAttribute(_handle).ToThreeState(); 669uncommon.lazyHasEmbeddedAttribute = ContainingPEModule.Module.HasCodeAnalysisEmbeddedAttribute(_handle).ToThreeState(); 688uncommon.lazyHasCompilerLoweringPreserveAttribute = ContainingPEModule.Module.HasCompilerLoweringPreserveAttribute(_handle).ToThreeState(); 743TypeSymbol decodedType = DynamicTypeDecoder.TransformType(baseType, 0, _handle, moduleSymbol); 744decodedType = NativeIntegerTypeDecoder.TransformType(decodedType, _handle, moduleSymbol, this); 745decodedType = TupleTypeDecoder.DecodeTupleTypesIfApplicable(decodedType, _handle, moduleSymbol); 746baseType = (NamedTypeSymbol)NullableTypeDecoder.TransformType(TypeWithAnnotations.Create(decodedType), _handle, moduleSymbol, accessSymbol: this, nullableContext: this).Type; 772EntityHandle token = moduleSymbol.Module.GetBaseTypeOfTypeOrThrow(_handle); 792var interfaceImpls = moduleSymbol.Module.GetInterfaceImplementationsOrThrow(_handle); 958if (!containingModule.TryGetNonEmptyCustomAttributes(_handle, out var customAttributeHandles)) 1010value = ContainingPEModule.Module.HasNullableContextAttribute(_handle, out byte arg) ? 1043foreach (var methodDef in module.GetMethodsOfTypeOrThrow(_handle)) 1058foreach (var propertyDef in module.GetPropertiesOfTypeOrThrow(_handle)) 1073foreach (var eventDef in module.GetEventsOfTypeOrThrow(_handle)) 1088foreach (var fieldDef in module.GetFieldsOfTypeOrThrow(_handle)) 1154var hasRequiredMemberAttribute = ContainingPEModule.Module.HasAttribute(_handle, AttributeDescription.RequiredMemberAttribute); 1184foreach (var fieldDef in module.GetFieldsOfTypeOrThrow(_handle)) 1304foreach (var handle in this.ContainingPEModule.Module.GetFieldsOfTypeOrThrow(_handle)) 1364foreach (var methodDef in module.GetMethodsOfTypeOrThrow(_handle)) 1471foreach (var fieldDef in module.GetFieldsOfTypeOrThrow(_handle)) 1555foreach (var fieldDef in module.GetFieldsOfTypeOrThrow(_handle)) 2020bool moduleHasExtension = module.HasExtensionAttribute(_handle, ignoreCase: false); 2116foreach (var methodHandle in module.GetMethodsOfTypeOrThrow(_handle)) 2209nestedTypeDefs = module.GetNestedTypeDefsOrThrow(_handle); 2218module.HasExtensionAttribute(_handle, ignoreCase: false) && !this.IsGenericType; 2346foreach (var fieldRid in module.GetFieldsOfTypeOrThrow(_handle)) 2392foreach (var methodHandle in module.GetMethodsOfTypeOrThrow(isExtension ? _lazyUncommonProperties.extensionInfo.GroupingTypeSymbol.Handle : _handle)) 2394if (isOrdinaryEmbeddableStruct || module.ShouldImportMethod(_handle, methodHandle, moduleSymbol.ImportOptions)) 2423foreach (var propertyDef in module.GetPropertiesOfTypeOrThrow(isExtension ? _lazyUncommonProperties.extensionInfo.GroupingTypeSymbol.Handle : _handle)) 2436PEMethodSymbol getMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Getter); 2437PEMethodSymbol setMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Setter); 2468foreach (var eventRid in module.GetEventsOfTypeOrThrow(_handle)) 2475PEMethodSymbol addMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Adder); 2476PEMethodSymbol removeMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Remover); 2547if (this.ContainingPEModule.Module.HasRequiredAttributeAttribute(_handle)) 2629this.ContainingPEModule.Module.HasDefaultMemberAttribute(_handle, out defaultMemberName); 2664return ContainingPEModule.Module.HasGuidAttribute(_handle, out guidString); 2671return this.ContainingPEModule.Module.GetTypeLayout(_handle); 2716isByRefLike = module.HasIsByRefLikeAttribute(_handle).ToThreeState(); 2765isReadOnly = module.HasIsReadOnlyAttribute(_handle).ToThreeState(); 2822ImmutableArray<string> conditionalSymbols = this.ContainingPEModule.Module.GetConditionalAttributeValues(_handle); 2841ObsoleteAttributeHelpers.InitializeObsoleteDataFromMetadata(ref uncommon.lazyObsoleteAttributeData, _handle, ContainingPEModule, ignoreByRefLikeMarker, ignoreRequiredMemberMarker: false); 2864if (this.ContainingPEModule.Module.HasAttributeUsageAttribute(_handle, new MetadataDecoder(ContainingPEModule), out AttributeUsageInfo info)) 2924if (this.ContainingPEModule.Module.HasInlineArrayAttribute(_handle, out length) && length > 0) 2966if (ContainingPEModule.Module.HasCollectionBuilderAttribute(_handle, out string builderTypeName, out string methodName)) 3208var nestedType = Create(this.ContainingPEModule, (PENamespaceSymbol)this.ContainingNamespace, _handle, null);