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

GetReflectionType() public method

Implements GetReflectionType. This just walks the linked list looking for someone who implements the call.
public GetReflectionType ( Type objectType, object instance ) : Type
objectType System.Type
instance object
return System.Type
            public override Type GetReflectionType(Type objectType, object instance)
            {
                if (objectType == null)
                {
                    throw new ArgumentNullException(nameof(objectType));
                }

                return Provider.GetReflectionType(objectType, instance);
            }