System.ComponentModel.TypeDescriptor.TypeDescriptionNode.GetExtendedTypeDescriptor C# (CSharp) 메소드

GetExtendedTypeDescriptor() 공개 메소드

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

                return new DefaultExtendedTypeDescriptor(this, instance);
            }