Class Arinc424Io
Data handling of ARINC 424 - The Navigation System Database Standard
Inheritance
System.Object
Arinc424Io
Namespace: FpAssistantCore.Arinc424
Assembly: FpAssistantCoreScl.dll
Syntax
public class Arinc424Io : object
Remarks
Properties
View SourceArinc424Data
Access to ARINC 424 records
Declaration
public Arinc424Data Arinc424Data { get; }
Property Value
Type | Description |
---|---|
Arinc424Data |
Methods
View SourceArinc424DataByRef()
Access to ARINC 424 records by reference
Declaration
public ref Arinc424Data Arinc424DataByRef()
Returns
Type | Description |
---|---|
Arinc424Data | ref to the Arinc424Data |
Clear()
Clears the current loaded ARINC 424 data and resets to an empty navigation database
Declaration
public bool Clear()
Returns
Type | Description |
---|---|
System.Boolean | true if cleared otherwise returns false |
Remarks
Resets to a single Header record (01)
Open(Stream)
Opens an ARINC 424 database file to read records
Declaration
public bool Open(Stream stream)
Parameters
Type | Name | Description |
---|---|---|
Stream | stream | IO stream of the ARINC 424 file |
Returns
Type | Description |
---|---|
System.Boolean | true if loaded otherwise returns false or throws an exception |
Remarks
Uses .NET Stream - Suitable for UWP apps
Open(String)
Opens an ARINC 424 database file to read records
Declaration
public bool Open(string filename)
Parameters
Type | Name | Description |
---|---|---|
System.String | filename | of ARINC 424 Navigation Database File |
Returns
Type | Description |
---|---|
System.Boolean | true if loaded otherwise returns false or throws an exception |
Remarks
Uses .NET StreamReader - Not suitable for UWP apps