2 implementations of FullName
System.ComponentModel.TypeConverter (1)
System\ComponentModel\NestedContainer.cs (1)
140public string? FullName
System.Windows.Forms.Design (1)
System\ComponentModel\Design\SiteNestedContainer.cs (1)
139public string? FullName
9 references to FullName
System.ComponentModel.TypeConverter (3)
System\ComponentModel\NestedContainer.cs (1)
49ownerName = nestedOwnerSite.FullName;
System\ComponentModel\ReflectTypeDescriptionProvider.cs (1)
847return ns.FullName;
System\ComponentModel\ReflectTypeDescriptionProvider.ReflectedTypeData.cs (1)
167return (nestedSite?.FullName) ?? site.Name;
System.Windows.Forms.Design (6)
System\ComponentModel\Design\Serialization\CodeDomComponentSerializationService.CodeDomSerializationStore.cs (2)
292if (site is INestedSite nestedSite && !string.IsNullOrEmpty(nestedSite.FullName)) 294return nestedSite.FullName;
System\ComponentModel\Design\Serialization\ComponentCodeDomSerializer.cs (1)
58if (comp.Site is INestedSite nestedSite && !string.IsNullOrEmpty(nestedSite.FullName))
System\ComponentModel\Design\Serialization\DesignerSerializationManager.cs (1)
840return site is null ? null : site is INestedSite nestedSite ? nestedSite.FullName : site.Name;
System\Windows\Forms\Design\BaseContextMenuStrip.cs (2)
273if (site is INestedSite nestedSite && !string.IsNullOrEmpty(nestedSite.FullName)) 275compName = nestedSite.FullName;