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