System.ComponentModel.TypeDescriptor.GetFullComponentName C# (CSharp) Метод

GetFullComponentName() публичный статический Метод

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.
public static GetFullComponentName ( object component ) : string
component object
Результат string
        public static string GetFullComponentName(object component)
        {
            if (component == null) throw new ArgumentNullException(nameof(component));
            return GetProvider(component).GetFullComponentName(component);
        }