Build 1.01.318.0

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

Flags indicating what has changed in a subscription.

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

Syntax

C#
[FlagsAttribute]
public enum SubscriptionChangeMask
Visual Basic
<FlagsAttribute> _
Public Enumeration SubscriptionChangeMask
Visual C++
[FlagsAttribute]
public enum class SubscriptionChangeMask

Members

Member nameValueDescription
None0 The subscription has not changed.
Created1 The subscription was created on the server.
Deleted2 The subscription was deleted on the server.
Modified4 The subscription was modified on the server.
ItemsAdded8 Monitored items were added to the subscription (but not created on the server)
ItemsRemoved16 Monitored items were removed to the subscription (but not deleted on the server)
ItemsCreated32 Monitored items were created on the server.
ItemsDeleted64 Monitored items were deleted on the server.
ItemsModified128 Monitored items were modified on the server.

See Also