12 references to RTSpecialName
mscorlib (7)
system\reflection\methodbase.cs (2)
246
((Attributes & MethodAttributes.
RTSpecialName
) == MethodAttributes.
RTSpecialName
));
system\rttype.cs (5)
653
(RuntimeMethodHandle.GetAttributes(methodHandle) & (MethodAttributes.
RTSpecialName
| MethodAttributes.Abstract | MethodAttributes.Virtual)) == (MethodAttributes.Abstract | MethodAttributes.Virtual) ||
667
if ((methodAttributes & MethodAttributes.
RTSpecialName
) != 0)
716
(RuntimeMethodHandle.GetAttributes(methodHandle) & MethodAttributes.
RTSpecialName
) == 0 ||
720
if ((methodAttributes & MethodAttributes.
RTSpecialName
) != 0)
826
if ((methodAttributes & MethodAttributes.
RTSpecialName
) == 0)
System.Core (1)
Microsoft\Scripting\Compiler\DelegateHelpers.cs (1)
27
private const MethodAttributes CtorAttributes = MethodAttributes.
RTSpecialName
| MethodAttributes.HideBySig | MethodAttributes.Public;
System.Data.Entity (2)
System\Data\Objects\Internal\EntityProxyFactory.cs (2)
718
_typeBuilder.DefineDefaultConstructor(MethodAttributes.Public | MethodAttributes.HideBySig | MethodAttributes.
RTSpecialName
| MethodAttributes.SpecialName);
1662
MethodAttributes constructorAttributes = MethodAttributes.HideBySig | MethodAttributes.SpecialName | MethodAttributes.
RTSpecialName
;
System.Xml (2)
System\Xml\Serialization\XmlSerializationILGen.cs (2)
288
MethodAttributes.Family | MethodAttributes.HideBySig | MethodAttributes.SpecialName | MethodAttributes.
RTSpecialName
);
537
CodeGenerator.PublicMethodAttributes | MethodAttributes.
RTSpecialName
| MethodAttributes.SpecialName