C# Class SobekCM.Core.UI_Configuration.TemplateElements.TemplateElementConfig

Show file Open project: MarkVSullivan/SobekCM-Web-Application Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
ShouldSerializeAssembly ( ) : bool

Method suppresses XML Serialization of the Assembly property if it is empty

ShouldSerializeSubtype ( ) : bool

Method suppresses XML Serialization of the Subtype property if it is empty

TemplateElementConfig ( ) : System

Constructor for a new instance of the TemplateElementConfig class

TemplateElementConfig ( string Type, string Subtype, string Class ) : System

Constructor for a new instance of the TemplateElementConfig class

TemplateElementConfig ( string Type, string Subtype, string Class, string Assembly ) : System

Constructor for a new instance of the TemplateElementConfig class

Method Details

ShouldSerializeAssembly() public method

Method suppresses XML Serialization of the Assembly property if it is empty
public ShouldSerializeAssembly ( ) : bool
return bool

ShouldSerializeSubtype() public method

Method suppresses XML Serialization of the Subtype property if it is empty
public ShouldSerializeSubtype ( ) : bool
return bool

TemplateElementConfig() public method

Constructor for a new instance of the TemplateElementConfig class
public TemplateElementConfig ( ) : System
return System

TemplateElementConfig() public method

Constructor for a new instance of the TemplateElementConfig class
public TemplateElementConfig ( string Type, string Subtype, string Class ) : System
Type string The 'type' value used in the template configuration files /// to select this metadata template element
Subtype string The 'subtype' value used in the template configuration files /// to select this metadata template element
Class string Fully qualified (including namespace) name of the class used /// for this template element
return System

TemplateElementConfig() public method

Constructor for a new instance of the TemplateElementConfig class
public TemplateElementConfig ( string Type, string Subtype, string Class, string Assembly ) : System
Type string The 'type' value used in the template configuration files /// to select this metadata template element
Subtype string The 'subtype' value used in the template configuration files /// to select this metadata template element
Class string Fully qualified (including namespace) name of the class used /// for this template element
Assembly string Name of the assembly within which this class resides, unless this /// is one of the default elements included in the core code
return System