Alloy.Business.Channels.DisplayResolutionBase.DisplayResolutionBase C# (CSharp) Метод

DisplayResolutionBase() защищенный Метод

protected DisplayResolutionBase ( string name, int width, int height ) : EPiServer.Framework.Localization
name string
width int
height int
Результат EPiServer.Framework.Localization
        protected DisplayResolutionBase(string name, int width, int height)
        {
            Id = GetType().FullName;
            Name = Translate(name);
            Width = width;
            Height = height;
        }