PerformanceAssessmentRecordGetFieldByPrn Method |
Gets the field in this record that corresponds to a given PRN.
Namespace:
AGI.Foundation.Navigation.DataReaders
Assembly:
AGI.Foundation.Navigation (in AGI.Foundation.Navigation.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public PerformanceAssessmentField GetFieldByPrn(
int prn
)
Public Function GetFieldByPrn (
prn As Integer
) As PerformanceAssessmentField
public:
PerformanceAssessmentField^ GetFieldByPrn(
int prn
)
member GetFieldByPrn :
prn : int -> PerformanceAssessmentField
Parameters
- prn
- Type: SystemInt32
The PRN for which to obtain the field.
Return Value
Type:
PerformanceAssessmentField
The field in this record corresponding to the given PRN. If the record does not contain a field for this
PRN at all, a new one with
DataAvailable set to
is constructed and returned.
Remarks
This is a fast, constant-time operation for PRNs less than 100. For a PRN greater than or equal to
100, the time to complete this operation increases linearly with the number of fields in the record.
See Also