AFObject.FindObject Method (String, AFObject)
- Last UpdatedNov 18, 2025
- 2 minute read
- PI System
- AF SDK 2024 R2
- Developer
Finds the object identified by the path, relative from the specified object.
Namespace: OSIsoft.AF
Assembly: OSIsoft.AFSDK (in OSIsoft.AFSDK.dll) Version: 3.1.1.1182
Syntax
public static AFObject FindObject( string path, AFObject relativeFrom )
Public Shared Function FindObject ( path As String, relativeFrom As AFObject ) As AFObject Dim path As String Dim relativeFrom As AFObject Dim returnValue As AFObject returnValue = AFObject.FindObject(path, relativeFrom)
public: static AFObject^ FindObject( String^ path, AFObject^ relativeFrom )
static member FindObject : path : string * relativeFrom : AFObject -> AFObject
Parameters
- path
- Type: SystemString
A string containing a pathname that is relative to the specified object, or a fully qualified path. See Path Syntax for more information. - relativeFrom
- Type: OSIsoft.AFAFObject
Specifies the object that the path was retrieved from. The query date of this object will be used where applicable.
Return Value
Type: AFObjectReturns the object identified by the path, relative from the specified object.
Remarks
A path to an object is created by the one of the AFObjectGetPath methods and can be restored from a string using this method. A path, such as "\\MySystem\MyDatabase\MyElement|Attribute1", can be used to reference any object derived from AFObject. See Path Syntax for a complete description of the path syntax.
| The ShowExcludedAttributes setting will determine if excluded attributes are returned when finding attributes by path. |