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;
        }