Antaris.AspNetCore.Mvc.Widgets.Infrastructure.DefaultWidgetSelector.WidgetDescriptorCache.WidgetDescriptorCache C# (CSharp) Method

WidgetDescriptorCache() public method

public WidgetDescriptorCache ( WidgetDescriptorCollection collection ) : System
collection WidgetDescriptorCollection
return System
            public WidgetDescriptorCache(WidgetDescriptorCollection collection)
            {
                Version = collection.Version;

                _lookupByShortName = collection.Items.ToLookup(c => c.ShortName, c => c);
                _lookupByFullName = collection.Items.ToLookup(c => c.FullName, c => c);
            }