Antaris.AspNetCore.Mvc.Widgets.Infrastructure.DefaultWidgetSelector.WidgetDescriptorCache.WidgetDescriptorCache C# (CSharp) Метод

WidgetDescriptorCache() публичный Метод

public WidgetDescriptorCache ( WidgetDescriptorCollection collection ) : System
collection WidgetDescriptorCollection
Результат 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);
            }