Class ExportCSVResult
A export data task result returned by the IServerTask. Holds the filename that was generated by the export data task (UNIQUE_TASK_ID)
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: LemonEdge.API.Tasks.Results
Assembly: API.dll
Syntax
[DataContract]
public class ExportCSVResult : ServerTaskResult, ICloneable, ICloneable<ExportCSVResult>
Properties
FileName
The name of the file the generated data was written to in IStorageManager
Declaration
public string FileName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ID
The optional id of the ISQLWrapper this data was generated from
Declaration
public Guid? ID { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
TypeIDKey
The optional entity type UniqueKey that the data was generated from
Declaration
public string TypeIDKey { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Clone()
Declaration
public ExportCSVResult Clone()
Returns
Type | Description |
---|---|
ExportCSVResult |
CopyFromParam(SerializedParam)
Declaration
protected override void CopyFromParam(SerializedParam source)
Parameters
Type | Name | Description |
---|---|---|
SerializedParam | source |
Overrides
CopyFromSource(ExportCSVResult)
Declaration
public void CopyFromSource(ExportCSVResult source)
Parameters
Type | Name | Description |
---|---|---|
ExportCSVResult | source |
CreateNewParam()
Declaration
protected override SerializedParam CreateNewParam()
Returns
Type | Description |
---|---|
SerializedParam |