1 write to _underlyingMethod
Microsoft.CodeAnalysis.CSharp (1)
Emitter\Model\ExpandedVarargsMethodReference.cs (1)
30
_underlyingMethod
= underlyingMethod;
24 references to _underlyingMethod
Microsoft.CodeAnalysis.CSharp (24)
Emitter\Model\ExpandedVarargsMethodReference.cs (24)
36
get { return
_underlyingMethod
.AcceptsExtraArguments; }
41
get { return
_underlyingMethod
.GenericParameterCount; }
46
return
_underlyingMethod
.GetResolvedMethod(context);
61
if (
_underlyingMethod
.AsGenericMethodInstanceReference == null)
66
Debug.Assert(
_underlyingMethod
.AsGenericMethodInstanceReference ==
_underlyingMethod
);
75
if (
_underlyingMethod
.AsSpecializedMethodReference == null)
80
Debug.Assert(
_underlyingMethod
.AsSpecializedMethodReference ==
_underlyingMethod
);
87
get { return
_underlyingMethod
.CallingConvention; }
92
get { return
_underlyingMethod
.ParameterCount; }
97
return
_underlyingMethod
.GetParameters(context);
102
get { return
_underlyingMethod
.ReturnValueCustomModifiers; }
107
get { return
_underlyingMethod
.RefCustomModifiers; }
112
get { return
_underlyingMethod
.ReturnValueIsByRef; }
117
return
_underlyingMethod
.GetType(context);
122
return
_underlyingMethod
.GetContainingType(context);
127
return
_underlyingMethod
.GetAttributes(context);
155
get { return
_underlyingMethod
.Name; }
160
return
_underlyingMethod
.AsGenericMethodInstanceReference.GetGenericArguments(context);
165
return new ExpandedVarargsMethodReference(
_underlyingMethod
.AsGenericMethodInstanceReference.GetGenericMethod(context), _argListParams);
172
return new ExpandedVarargsMethodReference(
_underlyingMethod
.AsSpecializedMethodReference.UnspecializedVersion, _argListParams);
179
Append(result,
_underlyingMethod
.GetInternalSymbol() ?? (object)
_underlyingMethod
);