Build 1.01.318.0

[This is preliminary documentation and is subject to change.]

Used to recieve notifications when a comment is added.

Namespace: Opc.Ua
Assembly: Opc.Ua.Core (in Opc.Ua.Core.dll) Version: 1.1.318.1 (1.01.318.1)

Syntax

C#
public delegate ServiceResult ConditionAddCommentEventHandler(
	ISystemContext context,
	ConditionState condition,
	byte[] eventId,
	LocalizedText comment
)
Visual Basic
Public Delegate Function ConditionAddCommentEventHandler ( _
	context As ISystemContext, _
	condition As ConditionState, _
	eventId As Byte(), _
	comment As LocalizedText _
) As ServiceResult
Visual C++
public delegate ServiceResult^ ConditionAddCommentEventHandler(
	ISystemContext^ context, 
	ConditionState^ condition, 
	array<unsigned char>^ eventId, 
	LocalizedText^ comment
)

Parameters

context
Type: Opc.Ua..::..ISystemContext
The current system context.
condition
Type: ConditionState
The condition that raised the event.
eventId
Type: array<System..::..Byte>[]()[][]
The identifier for the event which is the target for the comment.
comment
Type: Opc.Ua..::..LocalizedText
The comment.

See Also