1 write to _handle
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
329_handle = handle;
48 references to _handle
Microsoft.CodeAnalysis.CSharp (48)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (48)
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); 990value = ContainingPEModule.Module.HasNullableContextAttribute(_handle, out byte arg) ? 1023foreach (var methodDef in module.GetMethodsOfTypeOrThrow(_handle)) 1038foreach (var propertyDef in module.GetPropertiesOfTypeOrThrow(_handle)) 1053foreach (var eventDef in module.GetEventsOfTypeOrThrow(_handle)) 1068foreach (var fieldDef in module.GetFieldsOfTypeOrThrow(_handle)) 1134var hasRequiredMemberAttribute = ContainingPEModule.Module.HasAttribute(_handle, AttributeDescription.RequiredMemberAttribute); 1164foreach (var fieldDef in module.GetFieldsOfTypeOrThrow(_handle)) 1284foreach (var handle in this.ContainingPEModule.Module.GetFieldsOfTypeOrThrow(_handle)) 1344foreach (var methodDef in module.GetMethodsOfTypeOrThrow(_handle)) 1451foreach (var fieldDef in module.GetFieldsOfTypeOrThrow(_handle)) 1535foreach (var fieldDef in module.GetFieldsOfTypeOrThrow(_handle)) 2000bool moduleHasExtension = module.HasExtensionAttribute(_handle, ignoreCase: false); 2096foreach (var methodHandle in module.GetMethodsOfTypeOrThrow(_handle)) 2189nestedTypeDefs = module.GetNestedTypeDefsOrThrow(_handle); 2198module.HasExtensionAttribute(_handle, ignoreCase: false) && !this.IsGenericType; 2326foreach (var fieldRid in module.GetFieldsOfTypeOrThrow(_handle)) 2372foreach (var methodHandle in module.GetMethodsOfTypeOrThrow(isExtension ? _lazyUncommonProperties.extensionInfo.GroupingTypeSymbol.Handle : _handle)) 2374if (isOrdinaryEmbeddableStruct || module.ShouldImportMethod(_handle, methodHandle, moduleSymbol.ImportOptions)) 2403foreach (var propertyDef in module.GetPropertiesOfTypeOrThrow(isExtension ? _lazyUncommonProperties.extensionInfo.GroupingTypeSymbol.Handle : _handle)) 2416PEMethodSymbol getMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Getter); 2417PEMethodSymbol setMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Setter); 2448foreach (var eventRid in module.GetEventsOfTypeOrThrow(_handle)) 2455PEMethodSymbol addMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Adder); 2456PEMethodSymbol removeMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Remover); 2527if (this.ContainingPEModule.Module.HasRequiredAttributeAttribute(_handle)) 2609this.ContainingPEModule.Module.HasDefaultMemberAttribute(_handle, out defaultMemberName); 2644return ContainingPEModule.Module.HasGuidAttribute(_handle, out guidString); 2651return this.ContainingPEModule.Module.GetTypeLayout(_handle); 2696isByRefLike = module.HasIsByRefLikeAttribute(_handle).ToThreeState(); 2745isReadOnly = module.HasIsReadOnlyAttribute(_handle).ToThreeState(); 2802ImmutableArray<string> conditionalSymbols = this.ContainingPEModule.Module.GetConditionalAttributeValues(_handle); 2821ObsoleteAttributeHelpers.InitializeObsoleteDataFromMetadata(ref uncommon.lazyObsoleteAttributeData, _handle, ContainingPEModule, ignoreByRefLikeMarker, ignoreRequiredMemberMarker: false); 2844if (this.ContainingPEModule.Module.HasAttributeUsageAttribute(_handle, new MetadataDecoder(ContainingPEModule), out AttributeUsageInfo info)) 2904if (this.ContainingPEModule.Module.HasInlineArrayAttribute(_handle, out length) && length > 0) 2946if (ContainingPEModule.Module.HasCollectionBuilderAttribute(_handle, out string builderTypeName, out string methodName)) 3188var nestedType = Create(this.ContainingPEModule, (PENamespaceSymbol)this.ContainingNamespace, _handle, null);