3 instantiations of LocalScopeHandleCollection
System.Reflection.Metadata (3)
System\Reflection\Metadata\MetadataReader.cs (3)
1045
public LocalScopeHandleCollection LocalScopes => new
LocalScopeHandleCollection
(this, 0);
1405
return new
LocalScopeHandleCollection
(this, handle.RowId);
1410
return new
LocalScopeHandleCollection
(this, handle.RowId);
7 references to LocalScopeHandleCollection
System.Reflection.Metadata (5)
System\Reflection\Metadata\MetadataReader.cs (3)
1045
public
LocalScopeHandleCollection
LocalScopes => new LocalScopeHandleCollection(this, 0);
1403
public
LocalScopeHandleCollection
GetLocalScopes(MethodDefinitionHandle handle)
1408
public
LocalScopeHandleCollection
GetLocalScopes(MethodDebugInformationHandle handle)
System\Reflection\Metadata\PortablePdb\LocalScope.cs (2)
48
public
LocalScopeHandleCollection
.ChildrenEnumerator GetChildren()
50
return new
LocalScopeHandleCollection
.ChildrenEnumerator(_reader, _rowId);
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\General\Ecma\MetadataExtensions.cs (2)
36
public static
LocalScopeHandleCollection
GetLocalScopes(this MethodDefinitionHandle handle, MetadataReader reader) => reader.GetLocalScopes(handle);
37
public static
LocalScopeHandleCollection
GetLocalScopes(this MethodDebugInformationHandle handle, MetadataReader reader) => reader.GetLocalScopes(handle);