3 instantiations of LocalScopeHandleCollection
System.Reflection.Metadata (3)
System\Reflection\Metadata\MetadataReader.cs (3)
1045public LocalScopeHandleCollection LocalScopes => new LocalScopeHandleCollection(this, 0); 1405return new LocalScopeHandleCollection(this, handle.RowId); 1410return new LocalScopeHandleCollection(this, handle.RowId);
7 references to LocalScopeHandleCollection
System.Reflection.Metadata (5)
System\Reflection\Metadata\MetadataReader.cs (3)
1045public LocalScopeHandleCollection LocalScopes => new LocalScopeHandleCollection(this, 0); 1403public LocalScopeHandleCollection GetLocalScopes(MethodDefinitionHandle handle) 1408public LocalScopeHandleCollection GetLocalScopes(MethodDebugInformationHandle handle)
System\Reflection\Metadata\PortablePdb\LocalScope.cs (2)
48public LocalScopeHandleCollection.ChildrenEnumerator GetChildren() 50return 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);