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

GetCache() 공개 메소드

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

                return Provider.GetCache(instance);
            }