Пример #1
0
        public object GetProperty(ArticleProperties prop)
        {
            String name = prop.JsonName();

            object returnValue = null;

            if (this.Properties.ContainsKey(name))
            {
                returnValue = this.Properties[name];
            }

            return(returnValue);
        }
Пример #2
0
        public void SetProperty(ArticleProperties prop, object value)
        {
            String name = prop.JsonName();

            this.Properties[name] = value;
        }