Class MultipleItemsResult
A base task result returned by the IServerTask. Holds references to multiple items in the system that was calculated by any task
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 abstract class MultipleItemsResult : ServerTaskResult, ICloneable, ICloneable<MultipleItemsResult>
Properties
ID
A corrosponding list to TypeIDs holding an id of an instance of that entity type, that this result set references
Declaration
public Guid[] ID { get; set; }
Property Value
Type | Description |
---|---|
System.Guid[] |
TypeIDs
A list of the unique entity type ids for items that are part of this result
Declaration
public Guid[] TypeIDs { get; set; }
Property Value
Type | Description |
---|---|
System.Guid[] |
Methods
Clone()
Declaration
public MultipleItemsResult Clone()
Returns
Type | Description |
---|---|
MultipleItemsResult |
CopyFromParam(SerializedParam)
Declaration
protected override void CopyFromParam(SerializedParam source)
Parameters
Type | Name | Description |
---|---|---|
SerializedParam | source |
Overrides
CopyFromSource(MultipleItemsResult)
Declaration
public void CopyFromSource(MultipleItemsResult source)
Parameters
Type | Name | Description |
---|---|---|
MultipleItemsResult | source |