12 implementations of AsGenericMethodInstanceReference
Microsoft.CodeAnalysis (5)
CodeGen\ArrayMembers.cs (1)
332public Cci.IGenericMethodInstanceReference? AsGenericMethodInstanceReference => null;
Emit\EditAndContinue\DeletedMethodDefinition.cs (1)
89public IGenericMethodInstanceReference? AsGenericMethodInstanceReference => OldDefinition.AsGenericMethodInstanceReference;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
275Cci.IGenericMethodInstanceReference Cci.IMethodReference.AsGenericMethodInstanceReference => null;
Emit\NoPia\VtblGap.cs (1)
215Cci.IGenericMethodInstanceReference Cci.IMethodReference.AsGenericMethodInstanceReference
PEWriter\RootModuleStaticConstructor.cs (1)
90public IGenericMethodInstanceReference AsGenericMethodInstanceReference => null;
Microsoft.CodeAnalysis.CSharp (5)
Emitter\Model\ExpandedVarargsMethodReference.cs (1)
62Cci.IGenericMethodInstanceReference Cci.IMethodReference.AsGenericMethodInstanceReference
Emitter\Model\GenericMethodInstanceReference.cs (1)
51public override Cci.IGenericMethodInstanceReference AsGenericMethodInstanceReference
Emitter\Model\MethodReference.cs (1)
122public virtual Cci.IGenericMethodInstanceReference AsGenericMethodInstanceReference
Emitter\Model\MethodSymbolAdapter.cs (1)
32Cci.IGenericMethodInstanceReference Cci.IMethodReference.AsGenericMethodInstanceReference
Emitter\Model\SpecializedGenericMethodInstanceReference.cs (1)
47public override Cci.IGenericMethodInstanceReference AsGenericMethodInstanceReference
Microsoft.CodeAnalysis.VisualBasic (2)
Emit\MethodReference.vb (1)
97Public Overridable ReadOnly Property AsGenericMethodInstanceReference As Cci.IGenericMethodInstanceReference Implements Cci.IMethodReference.AsGenericMethodInstanceReference
Emit\MethodSymbolAdapter.vb (1)
26Private ReadOnly Property IMethodReferenceAsGenericMethodInstanceReference As Cci.IGenericMethodInstanceReference Implements Cci.IMethodReference.AsGenericMethodInstanceReference
18 references to AsGenericMethodInstanceReference
Microsoft.CodeAnalysis (5)
CodeGen\ReferenceDependencyWalker.cs (1)
109Cci.IGenericMethodInstanceReference? genericInstance = methodReference.AsGenericMethodInstanceReference;
Emit\EditAndContinue\DeletedMethodDefinition.cs (1)
89public IGenericMethodInstanceReference? AsGenericMethodInstanceReference => OldDefinition.AsGenericMethodInstanceReference;
PEWriter\MetadataVisitor.cs (1)
329IGenericMethodInstanceReference? genericMethodInstanceReference = methodReference.AsGenericMethodInstanceReference;
PEWriter\MetadataWriter.cs (1)
1183IGenericMethodInstanceReference methodSpec = methodReference.AsGenericMethodInstanceReference;
PEWriter\ReferenceIndexerBase.cs (1)
125IGenericMethodInstanceReference genericMethodInstanceReference = methodReference.AsGenericMethodInstanceReference;
Microsoft.CodeAnalysis.CSharp (8)
Emitter\Model\ExpandedVarargsMethodReference.cs (5)
66if (_underlyingMethod.AsGenericMethodInstanceReference == null) 71Debug.Assert(_underlyingMethod.AsGenericMethodInstanceReference == _underlyingMethod); 137if (((Cci.IMethodReference)this).AsGenericMethodInstanceReference != null) 165return _underlyingMethod.AsGenericMethodInstanceReference.GetGenericArguments(context); 170return new ExpandedVarargsMethodReference(_underlyingMethod.AsGenericMethodInstanceReference.GetGenericMethod(context), _argListParams);
Emitter\Model\MethodSymbolAdapter.cs (3)
98Debug.Assert(((Cci.IMethodReference)this).AsGenericMethodInstanceReference != null); 256Debug.Assert(((Cci.IMethodReference)this).AsGenericMethodInstanceReference != null); 269Debug.Assert(((Cci.IMethodReference)this).AsGenericMethodInstanceReference != null);
Microsoft.CodeAnalysis.VisualBasic (5)
Emit\MethodReference.vb (1)
97Public Overridable ReadOnly Property AsGenericMethodInstanceReference As Cci.IGenericMethodInstanceReference Implements Cci.IMethodReference.AsGenericMethodInstanceReference
Emit\MethodSymbolAdapter.vb (4)
26Private ReadOnly Property IMethodReferenceAsGenericMethodInstanceReference As Cci.IGenericMethodInstanceReference Implements Cci.IMethodReference.AsGenericMethodInstanceReference 75Debug.Assert((DirectCast(Me, Cci.IMethodReference)).AsGenericMethodInstanceReference IsNot Nothing) 206Debug.Assert((DirectCast(Me, Cci.IMethodReference)).AsGenericMethodInstanceReference IsNot Nothing) 213Debug.Assert((DirectCast(Me, Cci.IMethodReference)).AsGenericMethodInstanceReference IsNot Nothing)