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