Five tools under one repo, all docs organized per DOCS-GUIDE.md: - aalogcli: .NET 4.8 / x86 CliFx CLI for reading System Platform binary logs (*.aaLGX) for LLM debugging, built on aaOpenSource/aaLog. Commands: last, tail, range, unread, fields. Stable JSON envelope under --llm-json. Build template under lib/build/ for rebuilding aaLogReader.dll. - aot: ArchestrA Object Toolkit 2014 v4.0 reference material. Dev guide (Markdown converted from CHM), API reference for the ArchestrA.Toolkit namespace, and the Monitor / Watchdog VS sample solutions. - graccesscli: .NET 4.8 / x86 CliFx CLI that automates Galaxy configuration via the ArchestrA GRAccess COM interop. Includes session daemon, IPC protocol, and llm-json envelope contract. - grdb: SQL/DDL exploration of the Galaxy Repository database. DDL captures, reusable queries, hierarchy / contained-name <-> tag-name translation notes. - histdb: LLM-oriented reference for AVEVA Historian retrieval. INSQL linked-server, extension tables, every wwXxx time-domain extension, every retrieval mode, alarm/event SQL recipes, REST API. Distilled from the 243-page Historian Retrieval Guide. Root contains: - CLAUDE.md: thin index pointing into each tool's README. - DOCS-GUIDE.md: doctrine for organizing docs for LLM consumption. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
3.2 KiB
CMxTimeArray Class
Namespace: ArchestrA.Toolkit
CMxTimeArray is derived from CMxArray and provides support for Time/DateTime Array Attributes.
Syntax
public class CMxTimeArray : CMxArray<DateTime>
CMxTimeArray Properties
Value Property
Provides a property to get and set the value as a DateTime array.
Syntax
public DateTime[] Value { get; set; }
Returns
DateTime[ ]
Property to get and set the DateTime using [ ] operator
Provides a property to get and set the DateTime value of an element using [ ] operator.
Syntax
public DateTime this[short i] { get; set; }
Returns
DateTime
CMxTimeArray Constructors
CMxTimeArray Constructor int
Provides a constructor to initialize the array to a default length.
Syntax
public CMxTimeArray(int length);
Parameters
length
[in] integer value that holds the array length.
CMxTimeArray Constructor DateTime[ ]
Provides a constructor to initialize the class with a DateTime array default value.
Syntax
public CMxTimeArray (DateTime[] value);
Parameters
value
[in] DateTime[ ].
CMxTimeArray Constructor string[ ]
Provides a constructor to initialize the class with a formatted time string array default value.
Syntax
public CMxTimeArray (string[] value);
Parameters
value
[in] string[ ] value.
CMxTimeArray Constructor SupportWrapper, string
Provides a constructor to initialize the class for use in a primitive wrapper.
Syntax
public CMxTimeArray (SupportWrapper _wrapper, string _attributeRef);
Parameters
_wrapper
[in] SupportWrapper.
_attributeRef
[in] string value that holds the attribute reference.
CMxTimeArray Method
Set Method
Provides a method to set the value of the Attribute from a CMxTimeArray.
Syntax
public void Set(CMxTimeArray newValue);
Parameters
newValue
[in] CMxTimeArray value to be set.
CMxTimeArray Operator Overloads
CMxTimeArray Operator Overload DateTime[ ]
Provides an operator that converts from DateTime array to CMxTimeArray.
Syntax
public static implicit operator CMxTimeArray(DateTime[] val);
Parameters
val
[in] DateTime[ ] value to convert to CMxTimeArray.
Returns
CMxTimeArray
CMxTimeArray Operator Overload CMxValue
Provides an operator that converts from CMxValue to CMxTimeArray.
Syntax
public static implicit operator CMxTimeArray (CMxValue val);
Parameters
val
[in] CMxValue value to convert to CMxTimeArray.
Returns
CMxTimeArray
DateTime[ ] Operator Overload CMxTimeArray
Provides an operator that converts from CMxTimeArray to DateTime array.
Syntax
public static implicit operator DateTime[](CMxTimeArray val);
Parameters
val
[in] CMxTimeArray value to convert to DateTime[ ].
Returns
DateTime[ ]
CMxValue Operator Overload CMxTimeArray
Provides an operator that converts from CMxTimeArray to CMxValue.
Syntax
public static implicit operator CMxValue(CMxTimeArray val);
Parameters
val
[in] CMxTimeArray value to convert to CMxValue.
Returns
CMxValue