2 writes to MethodName
System.CodeDom (2)
System\CodeDom\codemethodreferenceexpression.cs (2)
16
MethodName
= methodName;
22
MethodName
= methodName;
14 references to MethodName
System.CodeDom (5)
Microsoft\CSharp\CSharpCodeGenerator.cs (1)
498
OutputIdentifier(e.
MethodName
);
Microsoft\VisualBasic\VBCodeGenerator.cs (2)
1094
Output.Write(e.
MethodName
);
1098
OutputIdentifier(e.
MethodName
);
System\CodeDom\Compiler\CodeValidator.cs (2)
874
ValidateIdentifier(e, nameof(e.
MethodName
), e.
MethodName
);
System.Windows.Forms.Design (9)
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (7)
736
MethodInfo? mi = GetReflectionTypeHelper(manager, target).GetMethod(methodRef.
MethodName
, paramTypes);
743
mi = target.GetType().GetMethod(methodRef.
MethodName
, paramTypes)!;
867
result = GetReflectionTypeFromTypeHelper(manager, t).InvokeMember(methodInvokeEx.Method.
MethodName
, BindingFlags.InvokeMethod | BindingFlags.Public | BindingFlags.Static, null, null, parameters, null, null, null);
875
result = GetReflectionTypeHelper(manager, targetObject).InvokeMember(methodInvokeEx.Method.
MethodName
, BindingFlags.InvokeMethod | BindingFlags.Public | BindingFlags.Instance, null, targetObject, parameters, null, null, null);
888
result = GetReflectionTypeFromTypeHelper(manager, castType).InvokeMember(methodInvokeEx.Method.
MethodName
, BindingFlags.InvokeMethod | BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance, null, targetObject, parameters, null, null, null);
906
string methodName = methodInvokeEx.Method.
MethodName
;
1196
handlerMethodName = methodRef.
MethodName
;
System\ComponentModel\Design\Serialization\ResourceCodeDomSerializer.cs (1)
37
if (string.Equals(methodInvokeEx.Method?.
MethodName
, "ApplyResources", StringComparison.OrdinalIgnoreCase))
System\ComponentModel\Design\Serialization\ResourceCodeDomSerializer.SerializationResourceManager.cs (1)
752
expressionName = codeMethod.
MethodName
;