SobekCM.Core.UI_Configuration.Citation.CitationFieldSet.ShouldSerializeHeading C# (CSharp) Method

ShouldSerializeHeading() public method

Method suppresses XML Serialization of the Heading property if it is empty
public ShouldSerializeHeading ( ) : bool
return bool
        public bool ShouldSerializeHeading()
        {
            return (!String.IsNullOrEmpty(Heading));
        }