/// <summary>
        /// Sets the short description.
        /// </summary>
        /// <param name="description">The description.</param>
        /// <returns></returns>
        public virtual GeneralInformationComponent SetShortDescription(string description)
        {
            ShortDescriptionElement.SetValue(description);

            return(this);
        }
コード例 #2
0
 /// <summary>
 /// Gets the short description.
 /// </summary>
 /// <returns></returns>
 public virtual string GetShortDescription()
 {
     return(ShortDescriptionElement.TextHelper().InnerText);
 }
 /// <summary>
 /// Gets the short description.
 /// </summary>
 /// <returns></returns>
 public virtual string GetShortDescription()
 {
     return(ShortDescriptionElement.GetValue <string>());
 }