Base:
6 references to Name
System.Reflection.Emit (6)
System\Reflection\Emit\ConstructorBuilderImpl.cs (1)
47
public override string Name => _methodBuilder.
Name
;
System\Reflection\Emit\ModuleBuilderImpl.cs (2)
407
AddMethodImport(handle, method._dllImportData.EntryPoint ?? method.
Name
,
950
name: _metadataBuilder.GetOrAddString(method.
Name
),
System\Reflection\Emit\TypeBuilderImpl.cs (3)
146
throw new InvalidOperationException(SR.Format(SR.InvalidOperation_BadMethodBody, method.
Name
));
821
if (name.Equals(method.
Name
) && MatchesTheFilter(method, GetBindingFlags(method), bindingAttr, callConvention, types))
825
throw new AmbiguousMatchException(SR.Format(SR.AmbiguousMatch_MemberInfo, method.DeclaringType, method.
Name
));