12 references to AssemblyCompanyAttribute
mscorlib (1)
system\reflection\emit\assemblybuilderdata.cs (1)
192else if (conType.Equals(typeof(System.Reflection.AssemblyCompanyAttribute)))
System (2)
compmod\microsoft\win32\SystemEvents.cs (2)
1073object[] attrs = entryAssembly.GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); 1075companyName = ((AssemblyCompanyAttribute)attrs[0]).Company;
System.Configuration (2)
System\Configuration\ClientConfigPaths.cs (2)
455object[] attrs = exeAssembly.GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); 457_companyName = ((AssemblyCompanyAttribute)attrs[0]).Company;
System.Drawing (3)
commonui\System\Drawing\Design\ToolboxItem.cs (3)
737object[] companyattrs = type.Assembly.GetCustomAttributes(typeof(AssemblyCompanyAttribute), true); 739AssemblyCompanyAttribute company = companyattrs[0] as AssemblyCompanyAttribute;
System.Windows.Forms (4)
winforms\Managed\System\WinForms\Application.cs (2)
270object[] attrs = entryAssembly.GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); 272companyName = ((AssemblyCompanyAttribute)attrs[0]).Company;
winforms\Managed\System\WinForms\Control.cs (2)
20148object[] attrs = owner.GetType().Module.Assembly.GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); 20150companyName = ((AssemblyCompanyAttribute)attrs[0]).Company;