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)) 1989bool moduleHasExtension = module.HasExtensionAttribute(_handle, ignoreCase: false); 2085foreach (var methodHandle in module.GetMethodsOfTypeOrThrow(_handle)) 2178nestedTypeDefs = module.GetNestedTypeDefsOrThrow(_handle); 2187module.HasExtensionAttribute(_handle, ignoreCase: false) && !this.IsGenericType; 2309foreach (var fieldRid in module.GetFieldsOfTypeOrThrow(_handle)) 2355foreach (var methodHandle in module.GetMethodsOfTypeOrThrow(isExtension ? _lazyUncommonProperties.extensionInfo.GroupingTypeSymbol.Handle : _handle)) 2357if (isOrdinaryEmbeddableStruct || module.ShouldImportMethod(_handle, methodHandle, moduleSymbol.ImportOptions)) 2386foreach (var propertyDef in module.GetPropertiesOfTypeOrThrow(isExtension ? _lazyUncommonProperties.extensionInfo.GroupingTypeSymbol.Handle : _handle)) 2399PEMethodSymbol getMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Getter); 2400PEMethodSymbol setMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Setter); 2431foreach (var eventRid in module.GetEventsOfTypeOrThrow(_handle)) 2438PEMethodSymbol addMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Adder); 2439PEMethodSymbol removeMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Remover); 2510if (this.ContainingPEModule.Module.HasRequiredAttributeAttribute(_handle)) 2592this.ContainingPEModule.Module.HasDefaultMemberAttribute(_handle, out defaultMemberName); 2627return ContainingPEModule.Module.HasGuidAttribute(_handle, out guidString); 2634return this.ContainingPEModule.Module.GetTypeLayout(_handle); 2679isByRefLike = module.HasIsByRefLikeAttribute(_handle).ToThreeState(); 2733isReadOnly = module.HasIsReadOnlyAttribute(_handle).ToThreeState(); 2790ImmutableArray<string> conditionalSymbols = this.ContainingPEModule.Module.GetConditionalAttributeValues(_handle); 2809ObsoleteAttributeHelpers.InitializeObsoleteDataFromMetadata(ref uncommon.lazyObsoleteAttributeData, _handle, ContainingPEModule, ignoreByRefLikeMarker, ignoreRequiredMemberMarker: false); 2832if (this.ContainingPEModule.Module.HasAttributeUsageAttribute(_handle, new MetadataDecoder(ContainingPEModule), out AttributeUsageInfo info)) 2892if (this.ContainingPEModule.Module.HasInlineArrayAttribute(_handle, out length) && length > 0) 2934if (ContainingPEModule.Module.HasCollectionBuilderAttribute(_handle, out string builderTypeName, out string methodName)) 3176var nestedType = Create(this.ContainingPEModule, (PENamespaceSymbol)this.ContainingNamespace, _handle, null);