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

GetExtendedTypeDescriptor() public method

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
return ICustomTypeDescriptor
            public override ICustomTypeDescriptor GetExtendedTypeDescriptor(object instance)
            {
                if (instance == null)
                {
                    throw new ArgumentNullException(nameof(instance));
                }

                return new DefaultExtendedTypeDescriptor(this, instance);
            }