Archetype.Models.ArchetypePublishedContent.this C# (CSharp) Method

this() public method

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

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