3 instantiations of MethodSpecificationHandle
System.Reflection.Metadata (3)
System\Reflection\Metadata\TypeSystem\Handles.TypeSystem.cs (3)
451
return new
MethodSpecificationHandle
(rowId);
471
return new
MethodSpecificationHandle
(handle.RowId);
481
return new
MethodSpecificationHandle
(handle.RowId);
36 references to MethodSpecificationHandle
Microsoft.CodeAnalysis (6)
Emit\EditAndContinue\DeltaMetadataWriter.cs (1)
439
protected override
MethodSpecificationHandle
GetOrAddMethodSpecificationHandle(IGenericMethodInstanceReference reference)
MetadataReader\MetadataDecoder.cs (1)
2225
this.Module.GetMethodSpecificationOrThrow((
MethodSpecificationHandle
)token, out method, out instantiation);
MetadataReader\PEModule.cs (1)
3270
internal void GetMethodSpecificationOrThrow(
MethodSpecificationHandle
handle, out EntityHandle method, out BlobHandle instantiation)
PEWriter\FullMetadataWriter.cs (1)
265
protected override
MethodSpecificationHandle
GetOrAddMethodSpecificationHandle(IGenericMethodInstanceReference reference)
PEWriter\MetadataWriter.cs (2)
333
protected abstract
MethodSpecificationHandle
GetOrAddMethodSpecificationHandle(IGenericMethodInstanceReference reference);
1158
private
MethodSpecificationHandle
GetMethodSpecificationHandle(IGenericMethodInstanceReference methodSpec)
System.Reflection.Emit (1)
System\Reflection\Emit\ModuleBuilderImpl.cs (1)
722
private
MethodSpecificationHandle
AddMethodSpecification(EntityHandle methodHandle, Type[] genericArgs) =>
System.Reflection.Metadata (28)
System\Reflection\Metadata\Ecma335\CodedIndex.cs (2)
33
/// <see cref="
MethodSpecificationHandle
"/>.
160
/// <see cref="
MethodSpecificationHandle
"/>,
System\Reflection\Metadata\Ecma335\Encoding\InstructionEncoder.cs (1)
125
public void Call(
MethodSpecificationHandle
methodHandle)
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (4)
735
/// <see cref="
MethodSpecificationHandle
"/>.
771
public
MethodSpecificationHandle
AddMethodSpecification(EntityHandle method, BlobHandle instantiation)
779
return
MethodSpecificationHandle
.FromRowId(_methodSpecTable.Count);
1392
/// <see cref="
MethodSpecificationHandle
"/>,
System\Reflection\Metadata\Ecma335\MetadataTokens.cs (2)
355
public static
MethodSpecificationHandle
MethodSpecificationHandle(int rowNumber)
357
return Metadata.
MethodSpecificationHandle
.FromRowId(ToRowId(rowNumber));
System\Reflection\Metadata\Internal\Tables.cs (2)
2512
internal EntityHandle GetMethod(
MethodSpecificationHandle
handle)
2518
internal BlobHandle GetInstantiation(
MethodSpecificationHandle
handle)
System\Reflection\Metadata\MetadataReader.cs (1)
1273
public MethodSpecification GetMethodSpecification(
MethodSpecificationHandle
handle)
System\Reflection\Metadata\TypeSystem\Handles.TypeSystem.cs (13)
437
public readonly struct MethodSpecificationHandle : IEquatable<
MethodSpecificationHandle
>
449
internal static
MethodSpecificationHandle
FromRowId(int rowId)
454
public static implicit operator Handle(
MethodSpecificationHandle
handle)
459
public static implicit operator EntityHandle(
MethodSpecificationHandle
handle)
464
public static explicit operator
MethodSpecificationHandle
(Handle handle)
474
public static explicit operator
MethodSpecificationHandle
(EntityHandle handle)
494
public static bool operator ==(
MethodSpecificationHandle
left,
MethodSpecificationHandle
right)
501
return obj is
MethodSpecificationHandle
&& ((
MethodSpecificationHandle
)obj)._rowId == _rowId;
504
public bool Equals(
MethodSpecificationHandle
other)
514
public static bool operator !=(
MethodSpecificationHandle
left,
MethodSpecificationHandle
right)
System\Reflection\Metadata\TypeSystem\MethodSpecification.cs (3)
16
internal MethodSpecification(MetadataReader reader,
MethodSpecificationHandle
handle)
25
private
MethodSpecificationHandle
Handle
27
get { return
MethodSpecificationHandle
.FromRowId(_rowId); }
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\General\Ecma\MetadataExtensions.cs (1)
45
public static MethodSpecification GetMethodSpecification(this
MethodSpecificationHandle
handle, MetadataReader reader) => reader.GetMethodSpecification(handle);