Base:
7 references to Name
System.Reflection.Emit (7)
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
,
946
name: _metadataBuilder.GetOrAddString(method.
Name
),
System\Reflection\Emit\TypeBuilderImpl.cs (4)
153
throw new InvalidOperationException(SR.Format(SR.InvalidOperation_BadMethodBody, method.
Name
));
158
throw new InvalidOperationException(SR.Format(SR.InvalidOperation_BadEmptyMethodBody, method.
Name
));
848
if (name.Equals(method.
Name
) && MatchesTheFilter(method, GetBindingFlags(method), bindingAttr, callConvention, types))
852
throw new AmbiguousMatchException(SR.Format(SR.AmbiguousMatch_MemberInfo, method.DeclaringType, method.
Name
));