1 write to _handle
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
301_handle = handle;
46 references to _handle
Microsoft.CodeAnalysis.CSharp (46)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (46)
115if (this.ContainingPEModule.HasAnyCustomAttributes(_handle)) 425return _handle; 431get { return MetadataTokens.GetToken(_handle); } 446uncommon.lazyHasInterpolatedStringHandlerAttribute = ContainingPEModule.Module.HasInterpolatedStringHandlerAttribute(_handle).ToThreeState(); 465uncommon.lazyHasEmbeddedAttribute = ContainingPEModule.Module.HasCodeAnalysisEmbeddedAttribute(_handle).ToThreeState(); 484uncommon.lazyHasCompilerLoweringPreserveAttribute = ContainingPEModule.Module.HasCompilerLoweringPreserveAttribute(_handle).ToThreeState(); 539TypeSymbol decodedType = DynamicTypeDecoder.TransformType(baseType, 0, _handle, moduleSymbol); 540decodedType = NativeIntegerTypeDecoder.TransformType(decodedType, _handle, moduleSymbol, this); 541decodedType = TupleTypeDecoder.DecodeTupleTypesIfApplicable(decodedType, _handle, moduleSymbol); 542baseType = (NamedTypeSymbol)NullableTypeDecoder.TransformType(TypeWithAnnotations.Create(decodedType), _handle, moduleSymbol, accessSymbol: this, nullableContext: this).Type; 568EntityHandle token = moduleSymbol.Module.GetBaseTypeOfTypeOrThrow(_handle); 588var interfaceImpls = moduleSymbol.Module.GetInterfaceImplementationsOrThrow(_handle); 769value = ContainingPEModule.Module.HasNullableContextAttribute(_handle, out byte arg) ? 802foreach (var methodDef in module.GetMethodsOfTypeOrThrow(_handle)) 817foreach (var propertyDef in module.GetPropertiesOfTypeOrThrow(_handle)) 832foreach (var eventDef in module.GetEventsOfTypeOrThrow(_handle)) 847foreach (var fieldDef in module.GetFieldsOfTypeOrThrow(_handle)) 913var hasRequiredMemberAttribute = ContainingPEModule.Module.HasAttribute(_handle, AttributeDescription.RequiredMemberAttribute); 943foreach (var fieldDef in module.GetFieldsOfTypeOrThrow(_handle)) 1063foreach (var handle in this.ContainingPEModule.Module.GetFieldsOfTypeOrThrow(_handle)) 1123foreach (var methodDef in module.GetMethodsOfTypeOrThrow(_handle)) 1230foreach (var fieldDef in module.GetFieldsOfTypeOrThrow(_handle)) 1314foreach (var fieldDef in module.GetFieldsOfTypeOrThrow(_handle)) 1754bool moduleHasExtension = module.HasExtensionAttribute(_handle, ignoreCase: false); 1889nestedTypeDefs = module.GetNestedTypeDefsOrThrow(_handle); 1968foreach (var fieldRid in module.GetFieldsOfTypeOrThrow(_handle)) 2013foreach (var methodHandle in module.GetMethodsOfTypeOrThrow(_handle)) 2015if (isOrdinaryEmbeddableStruct || module.ShouldImportMethod(_handle, methodHandle, moduleSymbol.ImportOptions)) 2036foreach (var propertyDef in module.GetPropertiesOfTypeOrThrow(_handle)) 2042PEMethodSymbol getMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Getter); 2043PEMethodSymbol setMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Setter); 2068foreach (var eventRid in module.GetEventsOfTypeOrThrow(_handle)) 2075PEMethodSymbol addMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Adder); 2076PEMethodSymbol removeMethod = GetAccessorMethod(module, methodHandleToSymbol, _handle, methods.Remover); 2147if (this.ContainingPEModule.Module.HasRequiredAttributeAttribute(_handle)) 2229this.ContainingPEModule.Module.HasDefaultMemberAttribute(_handle, out defaultMemberName); 2264return ContainingPEModule.Module.HasGuidAttribute(_handle, out guidString); 2271return this.ContainingPEModule.Module.GetTypeLayout(_handle); 2316isByRefLike = module.HasIsByRefLikeAttribute(_handle).ToThreeState(); 2344isReadOnly = module.HasIsReadOnlyAttribute(_handle).ToThreeState(); 2401ImmutableArray<string> conditionalSymbols = this.ContainingPEModule.Module.GetConditionalAttributeValues(_handle); 2420ObsoleteAttributeHelpers.InitializeObsoleteDataFromMetadata(ref uncommon.lazyObsoleteAttributeData, _handle, ContainingPEModule, ignoreByRefLikeMarker, ignoreRequiredMemberMarker: false); 2443if (this.ContainingPEModule.Module.HasAttributeUsageAttribute(_handle, new MetadataDecoder(ContainingPEModule), out AttributeUsageInfo info)) 2503if (this.ContainingPEModule.Module.HasInlineArrayAttribute(_handle, out length) && length > 0) 2545if (ContainingPEModule.Module.HasCollectionBuilderAttribute(_handle, out string builderTypeName, out string methodName)) 2777var nestedType = Create(this.ContainingPEModule, (PENamespaceSymbol)this.ContainingNamespace, _handle, null);