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