AFAttributeList.GetPIPoint Method
- Last UpdatedNov 18, 2025
- 2 minute read
- PI System
- AF SDK 2024 R2
- Developer
Returns the PIPoint that each AFAttribute in the list represents.
Namespace: OSIsoft.AF.Asset
Assembly: OSIsoft.AFSDK (in OSIsoft.AFSDK.dll) Version: 3.1.1.1182
Syntax
public AFKeyedResults<AFAttribute, PIPoint> GetPIPoint()
Public Function GetPIPoint As AFKeyedResults(Of AFAttribute, PIPoint) Dim instance As AFAttributeList Dim returnValue As AFKeyedResults(Of AFAttribute, PIPoint) returnValue = instance.GetPIPoint()
public: AFKeyedResults<AFAttribute^, PIPoint^>^ GetPIPoint()
member GetPIPoint : unit -> AFKeyedResults<AFAttribute, PIPoint>
Return Value
Type: AFKeyedResultsAFAttribute, PIPointReturns an array whose individual values correspond to the PIPoint for the AFAttribute in the matching index. If an error is generated in accessing this point, then an Exception will be stored in the array index. If no PIPoint is mapped for an attribute, then the value at the corresponding index will be .
Remarks
The call is equivalent to invoking the AFAttribute.PIPoint
call on each attribute in the list, however this call can batch the calls to the PIServer
in a more efficient manner.