System.ComponentModel.TypeDescriptor.TypeDescriptionNode.GetExtendedTypeDescriptor C# (CSharp) Méthode

GetExtendedTypeDescriptor() public méthode

Implements GetExtendedTypeDescriptor. This creates a custom type descriptor that walks the linked list for each of its calls.
public GetExtendedTypeDescriptor ( object instance ) : ICustomTypeDescriptor
instance object
Résultat ICustomTypeDescriptor
            public override ICustomTypeDescriptor GetExtendedTypeDescriptor(object instance)
            {
                if (instance == null)
                {
                    throw new ArgumentNullException(nameof(instance));
                }

                return new DefaultExtendedTypeDescriptor(this, instance);
            }