Base:
7 references to Name
System.Reflection.Emit (7)
System\Reflection\Emit\ConstructorBuilderImpl.cs (1)
47public override string Name => _methodBuilder.Name;
System\Reflection\Emit\ModuleBuilderImpl.cs (2)
403AddMethodImport(handle, method._dllImportData.EntryPoint ?? method.Name, 939name: _metadataBuilder.GetOrAddString(method.Name),
System\Reflection\Emit\TypeBuilderImpl.cs (4)
153throw new InvalidOperationException(SR.Format(SR.InvalidOperation_BadMethodBody, method.Name)); 158throw new InvalidOperationException(SR.Format(SR.InvalidOperation_BadEmptyMethodBody, method.Name)); 809if (name.Equals(method.Name) && MatchesTheFilter(method, GetBindingFlags(method), bindingAttr, callConvention, types)) 813throw new AmbiguousMatchException(SR.Format(SR.AmbiguousMatch_MemberInfo, method.DeclaringType, method.Name));