System.ComponentModel.TypeDescriptor.TypeDescriptionNode.GetFullComponentName C# (CSharp) Method

GetFullComponentName() public method

The name of the specified component, or null if the component has no name. In many cases this will return the same value as GetComponentName. If the component resides in a nested container or has other nested semantics, it may return a different fully qualfied name. If not overridden, the default implementation of this method will call GetTypeDescriptor.GetComponentName.
public GetFullComponentName ( object component ) : string
component object
return string
            public override string GetFullComponentName(object component)
            {
                if (component == null)
                {
                    throw new ArgumentNullException(nameof(component));
                }

                return Provider.GetFullComponentName(component);
            }