15 implementations of GetParameters
Microsoft.CodeAnalysis (7)
CodeGen\ArrayMembers.cs (1)
318public ImmutableArray<Cci.IParameterTypeInformation> GetParameters(EmitContext context)
Emit\EditAndContinue\DeletedMethodDefinition.cs (1)
141public ImmutableArray<IParameterTypeInformation> GetParameters(EmitContext context)
Emit\EditAndContinue\DeletedPropertyDefinition.cs (1)
95public ImmutableArray<IParameterTypeInformation> GetParameters(EmitContext context)
Emit\NoPia\CommonEmbeddedMethod.cs (1)
283ImmutableArray<Cci.IParameterTypeInformation> Cci.ISignature.GetParameters(EmitContext context)
Emit\NoPia\CommonEmbeddedProperty.cs (1)
142ImmutableArray<Cci.IParameterTypeInformation> Cci.ISignature.GetParameters(EmitContext context)
Emit\NoPia\VtblGap.cs (1)
235ImmutableArray<Cci.IParameterTypeInformation> Cci.ISignature.GetParameters(EmitContext context)
PEWriter\RootModuleStaticConstructor.cs (1)
116public ImmutableArray<IParameterTypeInformation> GetParameters(EmitContext context) => ImmutableArray<IParameterTypeInformation>.Empty;
Microsoft.CodeAnalysis.CSharp (5)
Emitter\Model\ExpandedVarargsMethodReference.cs (1)
100ImmutableArray<Cci.IParameterTypeInformation> Cci.ISignature.GetParameters(EmitContext context)
Emitter\Model\FunctionPointerTypeSymbolAdapter.cs (1)
78public ImmutableArray<IParameterTypeInformation> GetParameters(EmitContext context)
Emitter\Model\MethodReference.cs (1)
87ImmutableArray<Cci.IParameterTypeInformation> Cci.ISignature.GetParameters(EmitContext context)
Emitter\Model\MethodSymbolAdapter.cs (1)
195ImmutableArray<Cci.IParameterTypeInformation> Cci.ISignature.GetParameters(EmitContext context)
Emitter\Model\PropertySymbolAdapter.cs (1)
166ImmutableArray<IParameterTypeInformation> ISignature.GetParameters(EmitContext context)
Microsoft.CodeAnalysis.VisualBasic (3)
Emit\MethodReference.vb (1)
66Private Function ISignatureGetParameters(context As EmitContext) As ImmutableArray(Of Cci.IParameterTypeInformation) Implements Cci.ISignature.GetParameters
Emit\MethodSymbolAdapter.vb (1)
152Private Function ISignatureGetParameters(context As EmitContext) As ImmutableArray(Of Cci.IParameterTypeInformation) Implements Cci.ISignature.GetParameters
Emit\PropertySymbolAdapter.vb (1)
111Private Function ISignatureGetParameters(context As EmitContext) As ImmutableArray(Of IParameterTypeInformation) Implements ISignature.GetParameters
10 references to GetParameters
Microsoft.CodeAnalysis (5)
CodeGen\ReferenceDependencyWalker.cs (1)
137VisitParameters(signature.GetParameters(context), context);
PEWriter\MetadataVisitor.cs (1)
475foreach (var param in functionPointerTypeReference.Signature.GetParameters(Context))
PEWriter\MetadataWriter.cs (2)
3415var parameters = customAttribute.Constructor(Context, reportDiagnostics: false).GetParameters(Context); 3723var declaredParameters = signature.GetParameters(Context);
PEWriter\ReferenceIndexerBase.cs (1)
163this.Visit(signature.GetParameters(Context));
Microsoft.CodeAnalysis.CSharp (2)
Emitter\Model\ExpandedVarargsMethodReference.cs (1)
102return _underlyingMethod.GetParameters(context);
Emitter\Model\FunctionPointerTypeSymbolAdapter.cs (1)
79=> Underlying.GetParameters(context);
Microsoft.CodeAnalysis.VisualBasic (3)
Emit\MethodReference.vb (1)
66Private Function ISignatureGetParameters(context As EmitContext) As ImmutableArray(Of Cci.IParameterTypeInformation) Implements Cci.ISignature.GetParameters
Emit\MethodSymbolAdapter.vb (1)
152Private Function ISignatureGetParameters(context As EmitContext) As ImmutableArray(Of Cci.IParameterTypeInformation) Implements Cci.ISignature.GetParameters
Emit\PropertySymbolAdapter.vb (1)
111Private Function ISignatureGetParameters(context As EmitContext) As ImmutableArray(Of IParameterTypeInformation) Implements ISignature.GetParameters