SobekCM.Core.Configuration.BriefItemMapping_Mapper.ShouldSerializeAssembly C# (CSharp) Method

ShouldSerializeAssembly() public method

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