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