3 instantiations of LocalScopeHandleCollection
System.Reflection.Metadata (3)
System\Reflection\Metadata\MetadataReader.cs (3)
1045public LocalScopeHandleCollection LocalScopes => new LocalScopeHandleCollection(this, 0); 1424return new LocalScopeHandleCollection(this, handle.RowId); 1429return new LocalScopeHandleCollection(this, handle.RowId);
8 references to LocalScopeHandleCollection
ILCompiler.TypeSystem (1)
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\SymbolReader\PortablePdbSymbolReader.cs (1)
201var localScopes = _reader.GetLocalScopes(debugInformationHandle);
System.Reflection.Metadata (5)
System\Reflection\Metadata\MetadataReader.cs (3)
1045public LocalScopeHandleCollection LocalScopes => new LocalScopeHandleCollection(this, 0); 1422public LocalScopeHandleCollection GetLocalScopes(MethodDefinitionHandle handle) 1427public LocalScopeHandleCollection GetLocalScopes(MethodDebugInformationHandle handle)
System\Reflection\Metadata\PortablePdb\LocalScope.cs (2)
43public LocalScopeHandleCollection.ChildrenEnumerator GetChildren() 45return new LocalScopeHandleCollection.ChildrenEnumerator(_reader, _rowId);
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\General\Ecma\MetadataExtensions.cs (2)
36public static LocalScopeHandleCollection GetLocalScopes(this MethodDefinitionHandle handle, MetadataReader reader) => reader.GetLocalScopes(handle); 37public static LocalScopeHandleCollection GetLocalScopes(this MethodDebugInformationHandle handle, MetadataReader reader) => reader.GetLocalScopes(handle);