Class CodedFunctionImplementationDefinitionDto
A data transfer object for function implementation definitions that use code.
Inheritance
System.Object
CodedFunctionImplementationDefinitionDto
Inherited Members
Namespace: MESL.SqlRace.Domain.Functions.Persistence
Assembly: MESL.SqlRace.Domain.dll
Syntax
public abstract class CodedFunctionImplementationDefinitionDto : FunctionImplementationDefinitionDto
Constructors
CodedFunctionImplementationDefinitionDto(Guid)
Initializes a new instance of the CodedFunctionImplementationDefinitionDto class.
Declaration
protected CodedFunctionImplementationDefinitionDto(Guid functionBuilderUniqueId)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | functionBuilderUniqueId | The function builder unique identifier. |
Properties
FunctionCode
Gets or sets the function code.
Declaration
public string FunctionCode { get; set; }
Property Value
Type | Description |
---|---|
System.String | The function code. |
FunctionCodeCdata
Gets or sets the file path, wrapped as a CDATA section.
Declaration
public XmlCDataSection FunctionCodeCdata { get; set; }
Property Value
Type | Description |
---|---|
System.Xml.XmlCDataSection | An XmlCDataSection containing the file path. |