AFDefaultDeliveryFormats.Contains Method (Guid)
- Last UpdatedJan 12, 2026
- 2 minute read
- PI System
- AF SDK 3.2.0
- Developer
This method determines whether the collection contains a specific item referenced by id.
Namespace: OSIsoft.AF.Notification
Assembly: OSIsoft.AFSDK (in OSIsoft.AFSDK.dll) Version: 3.2.0.7
Syntax
public bool Contains( Guid id )
Public Function Contains ( id As Guid ) As Boolean Dim instance As AFDefaultDeliveryFormats Dim id As Guid Dim returnValue As Boolean returnValue = instance.Contains(id)
public: virtual bool Contains( Guid id ) sealed
abstract Contains : id : Guid -> bool override Contains : id : Guid -> bool
Parameters
- id
- Type: SystemGuid
The id to locate in the collection.
Return Value
Type: BooleanReturns if the collection contains an item with the specified id; otherwise, .
Implements
IAFListContains(Guid)
Remarks
This method approaches an O(1) operation.