Archetype.Models.ArchetypePublishedContent.this C# (CSharp) 메소드

this() 공개 메소드

public this ( string alias ) : object
alias string
리턴 object
        public object this[string alias]
        {
            get
            {
                var property = this.GetProperty(alias);

                return property == null
                    ? null
                    : property.Value;
            }
        }