AVEVA OMI Software Developer Kit



A reference (e.g. tagname) to a runtime asset (IsCustomHierarchyNode is false); A hierarchical path if IsCustomHierarchyNode is true.
Create Method
Factory method. A new AlarmData will be created if this is the first request for one associated with the specified reference. Otherwise an existing one will be shared.

The caller of this method should call Release() when finished with the received AlarmData, so it can be Disposed() if no other clients exist.

Syntax
'Declaration
 
Public Shared Function Create( _
   ByVal reference As String _
) As AlarmData
'Usage
 
Dim reference As String
Dim value As AlarmData
 
value = AlarmData.Create(reference)
public static AlarmData Create( 
   string reference
)
public:
static AlarmData^ Create( 
   String^ reference
) 

Parameters

reference
A reference (e.g. tagname) to a runtime asset (IsCustomHierarchyNode is false); A hierarchical path if IsCustomHierarchyNode is true.

Return Value

A new or existing AlarmData
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also