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

GetCache() public method

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

                return Provider.GetCache(instance);
            }