Method | Description | |
---|---|---|
AddReferences ( IDictionary |
This method is used to add bi-directional references to nodes from other node managers. The additional references are optional, however, the NodeManager should support them. |
|
Browse ( |
Browses the references from a node managed by the node manager. The continuation point is created for every browse operation and contains the browse parameters. The node manager can store its state information in the Data and Index properties. |
|
Call ( |
Calls a method on the specified nodes.
|
|
ConditionRefresh ( |
Tells the node manager to refresh any conditions associated with the specified monitored items. This method is called when the condition refresh method is called for a subscription. The node manager must create a refresh event for each condition monitored by the subscription. |
|
CreateAddressSpace ( IDictionary |
Does any initialization required before the address space can be used. The externalReferences is an out parameter that allows the node manager to link to nodes in other node managers. For example, the 'Objects' node is managed by the CoreNodeManager and should have a reference to the root folder node(s) exposed by this node manager. |
|
CreateMonitoredItems ( |
Creates a new set of monitored items for a set of variables. This method only handles data change subscriptions. Event subscriptions are created by the SDK. |
|
CreateNode ( |
Creates a new instance and assigns unique identifiers to all children.
|
|
DeleteAddressSpace ( ) : void |
Frees any resources allocated for the address space.
|
|
DeleteMonitoredItems ( |
Deletes a set of monitored items.
|
|
DeleteNode ( |
Deletes a node and all of its children.
|
|
DeleteReference ( object sourceHandle, Opc.Ua.NodeId referenceTypeId, bool isInverse, Opc.Ua.ExpandedNodeId targetId, bool deleteBiDirectional ) : |
This method is used to delete bi-directional references to nodes from other node managers.
|
|
Dispose ( ) : void |
Frees any unmanaged resources.
|
|
Find ( Opc.Ua.NodeId nodeId ) : NodeState |
Returns the state object for the specified node if it exists.
|
|
FindPredefinedNode ( Opc.Ua.NodeId nodeId, |
Finds the specified and checks if it is of the expected type.
|
|
GetManagerHandle ( Opc.Ua.NodeId nodeId ) : object |
Returns a unique handle for the node. This must efficiently determine whether the node belongs to the node manager. If it does belong to NodeManager it should return a handle that does not require the NodeId to be validated again when the handle is passed into other methods such as 'Read' or 'Write'. |
|
GetNodeMetadata ( |
Returns the basic metadata for the node. Returns null if the node does not exist. This method validates any placeholder handle. |
|
HistoryRead ( |
Reads the history for the specified nodes.
|
|
HistoryUpdate ( |
Updates the history for the specified nodes.
|
|
LoadPredefinedNodes ( ISystemContext context, |
Loads a node set from a file or resource and addes them to the set of predefined nodes.
|
|
ModifyMonitoredItems ( |
Modifies the parameters for a set of monitored items.
|
|
New ( ISystemContext context, NodeState node ) : Opc.Ua.NodeId |
Creates the NodeId for the specified node.
|
|
Read ( |
Reads the value for the specified attribute.
|
|
SessionClosing ( |
Called when a session is closed.
|
|
SetMonitoringMode ( |
Changes the monitoring mode for a set of monitored items.
|
|
SubscribeToAllEvents ( |
Subscribes or unsubscribes to events produced by all event sources. This method is called when a event subscription is created or deleted. The node manager must start/stop reporting events for all objects that it manages. |
|
SubscribeToEvents ( |
Subscribes or unsubscribes to events produced by the specified source. This method is called when a event subscription is created or deletes. The node manager must start/stop reporting events for the specified object and all objects below it in the notifier hierarchy. |
|
TranslateBrowsePath ( |
Returns the target of the specified browse path fragment(s). If reference exists but the node manager does not know the browse name it must return the NodeId as an unresolvedTargetIds. The caller will try to check the browse name. |
|
Write ( |
Writes the value for the specified attributes.
|
Method | Description | |
---|---|---|
AddBehaviourToPredefinedNode ( ISystemContext context, NodeState predefinedNode ) : NodeState |
Replaces the generic node with a node specific to the model.
|
|
AddExternalReference ( Opc.Ua.NodeId sourceId, Opc.Ua.NodeId referenceTypeId, bool isInverse, Opc.Ua.NodeId targetId, IDictionary |
Adds an external reference to the dictionary.
|
|
AddNodeToComponentCache ( ISystemContext context, NodeHandle handle, NodeState node ) : NodeState |
Adds a node to the component cache.
|
|
AddPredefinedNode ( ISystemContext context, NodeState node ) : void |
Recursively indexes the node and its children.
|
|
AddReverseReferences ( IDictionary |
Ensures that all reverse references exist.
|
|
AddRootNotifier ( NodeState notifier ) : void |
Adds a root notifier. A root notifier is a notifier owned by the NodeManager that is not the target of a HasNotifier reference. These nodes need to be linked directly to the Server object. |
|
AddTypesToTypeTree ( |
Recursively adds the types to the type tree.
|
|
AddTypesToTypeTree ( Opc.Ua.NodeId typeId ) : void |
Recursively adds the types to the type tree.
|
|
Call ( ISystemContext context, |
Calls a method on an object.
|
|
CreateMonitoredItem ( |
Creates a new set of monitored items for a set of variables. This method only handles data change subscriptions. Event subscriptions are created by the SDK. |
|
DeleteMonitoredItem ( |
Deletes a monitored item.
|
|
Dispose ( bool disposing ) : void |
An overrideable version of the Dispose.
|
|
FindNodeInCache ( |
Finds a node in the dynamic cache.
|
|
GetManagerHandle ( |
Returns a unique handle for the node.
|
|
GetReferenceDescription ( |
Returns the references for the node that meets the criteria specified.
|
|
HistoryDeleteAtTime ( |
Deletes the data history for one or more nodes.
|
|
HistoryDeleteEvents ( |
Deletes the event history for one or more nodes.
|
|
HistoryDeleteRawModified ( |
Deletes the data history for one or more nodes.
|
|
HistoryRead ( |
Validates the nodes and reads the values from the underlying source.
|
|
HistoryReadAtTime ( |
Reads history data at specified times.
|
|
HistoryReadEvents ( |
Reads history events.
|
|
HistoryReadProcessed ( |
Reads processed history data.
|
|
HistoryReadRawModified ( |
Reads raw history data.
|
|
HistoryReleaseContinuationPoints ( |
Releases the continuation points.
|
|
HistoryUpdate ( |
Validates the nodes and updates the history.
|
|
HistoryUpdateData ( |
Updates the data history for one or more nodes.
|
|
HistoryUpdateEvents ( |
Updates the event history for one or more nodes.
|
|
HistoryUpdateStructureData ( |
Updates the structured data history for one or more nodes.
|
|
IsHandleInNamespace ( object managerHandle ) : NodeHandle |
Returns the node if the handle refers to a node managed by this manager.
|
|
IsNodeIdInNamespace ( Opc.Ua.NodeId nodeId ) : bool |
Returns true if the namespace for the node id is one of the namespaces managed by the node manager.
|
|
IsNodeInView ( |
Checks if the node is in the view.
|
|
IsReferenceInView ( |
Checks if the reference is in the view.
|
|
LoadPredefinedNodes ( ISystemContext context ) : NodeStateCollection |
Loads a node set from a file or resource and addes them to the set of predefined nodes.
|
|
LoadPredefinedNodes ( ISystemContext context, IDictionary |
Loads a node set from a file or resource and addes them to the set of predefined nodes.
|
|
LookupNodeInComponentCache ( ISystemContext context, NodeHandle handle ) : NodeState |
Looks up a component in cache.
|
|
ModifyMonitoredItem ( |
Modifies the parameters for a monitored item.
|
|
OnCreateMonitoredItemsComplete ( |
Called when a batch of monitored items has been created.
|
|
OnDeleteMonitoredItemsComplete ( |
Called when a batch of monitored items has been modified.
|
|
OnModifyMonitoredItemsComplete ( |
Called when a batch of monitored items has been modified.
|
|
OnMonitoredItemCreated ( |
Called after creating a MonitoredItem.
|
|
OnMonitoredItemDeleted ( |
Called after deleting a MonitoredItem.
|
|
OnMonitoredItemModified ( |
Called after modifying a MonitoredItem.
|
|
OnMonitoringModeChanged ( |
Called after changing the MonitoringMode for a MonitoredItem.
|
|
OnNodeRemoved ( NodeState node ) : void |
Called after a node has been deleted.
|
|
OnReportEvent ( ISystemContext context, NodeState node, IFilterTarget e ) : void |
Reports an event for a root notifier.
|
|
OnSetMonitoringModeComplete ( |
Called when a batch of monitored items has their monitoring mode changed.
|
|
OnSubscribeToEvents ( |
Called after subscribing/unsubscribing to events.
|
|
QuickstartNodeManager ( IServerInternal server ) : System |
Initializes the node manager.
|
|
QuickstartNodeManager ( IServerInternal server, ApplicationConfiguration configuration ) : System |
Initializes the node manager.
|
|
Read ( |
Validates the nodes and reads the values from the underlying source.
|
|
ReadInitialValue ( |
Reads the initial value for a monitored item.
|
|
RemoveNodeFromComponentCache ( ISystemContext context, NodeHandle handle ) : void |
Removes a reference to a component in thecache.
|
|
RemovePredefinedNode ( ISystemContext context, NodeState node, List |
Recursively indexes the node and its children.
|
|
RemoveRootNotifier ( NodeState notifier ) : void |
Removes a root notifier previously added with AddRootNotifier.
|
|
ReviseAggregateFilter ( |
Revises an aggregate filter (may require knowledge of the variable being used).
|
|
SetMonitoringMode ( |
Changes the monitoring mode for an item.
|
|
SetNamespaceIndexes ( ushort namespaceIndexes ) : void |
Sets the namespace indexes supported by the NodeManager.
|
|
SetNamespaces ( ) : void |
Sets the namespaces supported by the NodeManager.
|
|
SubscribeToEvents ( |
Subscribes to events.
|
|
ValidateMonitoringFilter ( |
Validates the monitoring filter specified by the client.
|
|
ValidateNode ( |
Verifies that the specified node exists.
|
|
ValidateViewDescription ( |
Validates the view description passed to a browse request (throws on error).
|
|
ValidationComplete ( |
Marks the handle as validated and saves the node in the dynamic cache.
|
|
Write ( |
Validates the nodes and writes the value to the underlying system.
|
protected AddBehaviourToPredefinedNode ( ISystemContext context, NodeState predefinedNode ) : NodeState | ||
context | ISystemContext | |
predefinedNode | NodeState | |
return | NodeState |
protected AddExternalReference ( Opc.Ua.NodeId sourceId, Opc.Ua.NodeId referenceTypeId, bool isInverse, Opc.Ua.NodeId targetId, IDictionary |
||
sourceId | Opc.Ua.NodeId | |
referenceTypeId | Opc.Ua.NodeId | |
isInverse | bool | |
targetId | Opc.Ua.NodeId | |
externalReferences | IDictionary |
|
return | void |
protected AddNodeToComponentCache ( ISystemContext context, NodeHandle handle, NodeState node ) : NodeState | ||
context | ISystemContext | |
handle | NodeHandle | |
node | NodeState | |
return | NodeState |
protected AddPredefinedNode ( ISystemContext context, NodeState node ) : void | ||
context | ISystemContext | |
node | NodeState | |
return | void |
public AddReferences ( IDictionary |
||
references | IDictionary |
|
return | void |
protected AddReverseReferences ( IDictionary |
||
externalReferences | IDictionary |
A list of references to add to external targets. |
return | void |
protected AddRootNotifier ( NodeState notifier ) : void | ||
notifier | NodeState | The notifier. |
return | void |
protected AddTypesToTypeTree ( |
||
type | ||
return | void |
protected AddTypesToTypeTree ( Opc.Ua.NodeId typeId ) : void | ||
typeId | Opc.Ua.NodeId | |
return | void |
public Browse ( |
||
context | ||
continuationPoint | ||
references | IList |
|
return | void |
protected Call ( ISystemContext context, |
||
context | ISystemContext | |
methodToCall | ||
method | ||
result | CallMethodResult | |
return |
public Call ( |
||
context | ||
methodsToCall | IList |
|
results | IList |
|
errors | IList |
|
return | void |
public ConditionRefresh ( |
||
context | ||
monitoredItems | IList |
|
return |
public CreateAddressSpace ( IDictionary |
||
externalReferences | IDictionary |
|
return | void |
protected CreateMonitoredItem ( |
||
context | ||
handle | NodeHandle | |
subscriptionId | uint | |
publishingInterval | double | |
diagnosticsMasks | DiagnosticsMasks | |
timestampsToReturn | TimestampsToReturn | |
itemToCreate | ||
globalIdCounter | long | |
filterResult | MonitoringFilterResult | |
monitoredItem | IMonitoredItem | |
return |
public CreateMonitoredItems ( |
||
context | ||
subscriptionId | uint | |
publishingInterval | double | |
timestampsToReturn | TimestampsToReturn | |
itemsToCreate | IList |
|
errors | IList |
|
filterResults | IList |
|
monitoredItems | IList |
|
globalIdCounter | long | |
return | void |
public CreateNode ( |
||
context | The operation context. | |
parentId | Opc.Ua.NodeId | An optional parent identifier. |
referenceTypeId | Opc.Ua.NodeId | The reference type from the parent. |
browseName | Opc.Ua.QualifiedName | The browse name. |
instance | The instance to create. | |
return | Opc.Ua.NodeId |
protected DeleteMonitoredItem ( |
||
context | ||
monitoredItem | IMonitoredItem | |
handle | NodeHandle | |
return |
public DeleteMonitoredItems ( |
||
context | ||
monitoredItems | IList |
|
processedItems | IList |
|
errors | IList |
|
return | void |
public DeleteNode ( |
||
context | ||
nodeId | Opc.Ua.NodeId | |
return | bool |
public DeleteReference ( object sourceHandle, Opc.Ua.NodeId referenceTypeId, bool isInverse, Opc.Ua.ExpandedNodeId targetId, bool deleteBiDirectional ) : |
||
sourceHandle | object | |
referenceTypeId | Opc.Ua.NodeId | |
isInverse | bool | |
targetId | Opc.Ua.ExpandedNodeId | |
deleteBiDirectional | bool | |
return |
public Find ( Opc.Ua.NodeId nodeId ) : NodeState | ||
nodeId | Opc.Ua.NodeId | |
return | NodeState |
protected FindNodeInCache ( |
||
context | The current context. | |
handle | NodeHandle | The node handle. |
cache | NodeState>.IDictionary | The cache to search. |
return | NodeState |
public FindPredefinedNode ( Opc.Ua.NodeId nodeId, |
||
nodeId | Opc.Ua.NodeId | |
expectedType | ||
return | NodeState |
protected GetManagerHandle ( |
||
context | ||
nodeId | Opc.Ua.NodeId | |
cache | NodeState>.IDictionary | |
return | NodeHandle |
public GetManagerHandle ( Opc.Ua.NodeId nodeId ) : object | ||
nodeId | Opc.Ua.NodeId | |
return | object |
public GetNodeMetadata ( |
||
context | ||
targetHandle | object | |
resultMask | BrowseResultMask | |
return |
protected GetReferenceDescription ( |
||
context | ||
cache | NodeState>.Dictionary | |
reference | IReference | |
continuationPoint | ||
return |
protected HistoryDeleteAtTime ( |
||
context | ||
nodesToUpdate | IList |
|
results | IList |
|
errors | IList |
|
nodesToProcess | List |
|
cache | NodeState>.IDictionary | |
return | void |
protected HistoryDeleteEvents ( |
||
context | ||
nodesToUpdate | IList |
|
results | IList |
|
errors | IList |
|
nodesToProcess | List |
|
cache | NodeState>.IDictionary | |
return | void |
protected HistoryDeleteRawModified ( |
||
context | ||
nodesToUpdate | IList |
|
results | IList |
|
errors | IList |
|
nodesToProcess | List |
|
cache | NodeState>.IDictionary | |
return | void |
public HistoryRead ( |
||
context | ||
details | HistoryReadDetails | |
timestampsToReturn | TimestampsToReturn | |
releaseContinuationPoints | bool | |
nodesToRead | IList |
|
results | IList |
|
errors | IList |
|
return | void |
protected HistoryRead ( |
||
context | ||
details | HistoryReadDetails | |
timestampsToReturn | TimestampsToReturn | |
releaseContinuationPoints | bool | |
nodesToRead | IList |
|
results | IList |
|
errors | IList |
|
nodesToProcess | List |
|
cache | NodeState>.IDictionary | |
return | void |
protected HistoryReadAtTime ( |
||
context | ||
details | ReadAtTimeDetails | |
timestampsToReturn | TimestampsToReturn | |
nodesToRead | IList |
|
results | IList |
|
errors | IList |
|
nodesToProcess | List |
|
cache | NodeState>.IDictionary | |
return | void |
protected HistoryReadEvents ( |
||
context | ||
details | ReadEventDetails | |
timestampsToReturn | TimestampsToReturn | |
nodesToRead | IList |
|
results | IList |
|
errors | IList |
|
nodesToProcess | List |
|
cache | NodeState>.IDictionary | |
return | void |
protected HistoryReadProcessed ( |
||
context | ||
details | ReadProcessedDetails | |
timestampsToReturn | TimestampsToReturn | |
nodesToRead | IList |
|
results | IList |
|
errors | IList |
|
nodesToProcess | List |
|
cache | NodeState>.IDictionary | |
return | void |
protected HistoryReadRawModified ( |
||
context | ||
details | ReadRawModifiedDetails | |
timestampsToReturn | TimestampsToReturn | |
nodesToRead | IList |
|
results | IList |
|
errors | IList |
|
nodesToProcess | List |
|
cache | NodeState>.IDictionary | |
return | void |
protected HistoryReleaseContinuationPoints ( |
||
context | ||
nodesToRead | IList |
|
errors | IList |
|
nodesToProcess | List |
|
cache | NodeState>.IDictionary | |
return | void |
public HistoryUpdate ( |
||
context | ||
detailsType | ||
nodesToUpdate | IList |
|
results | IList |
|
errors | IList |
|
return | void |
protected HistoryUpdate ( |
||
context | ||
detailsType | ||
nodesToUpdate | IList |
|
results | IList |
|
errors | IList |
|
nodesToProcess | List |
|
cache | NodeState>.IDictionary | |
return | void |
protected HistoryUpdateData ( |
||
context | ||
nodesToUpdate | IList |
|
results | IList |
|
errors | IList |
|
nodesToProcess | List |
|
cache | NodeState>.IDictionary | |
return | void |
protected HistoryUpdateEvents ( |
||
context | ||
nodesToUpdate | IList |
|
results | IList |
|
errors | IList |
|
nodesToProcess | List |
|
cache | NodeState>.IDictionary | |
return | void |
protected HistoryUpdateStructureData ( |
||
context | ||
nodesToUpdate | IList |
|
results | IList |
|
errors | IList |
|
nodesToProcess | List |
|
cache | NodeState>.IDictionary | |
return | void |
protected IsHandleInNamespace ( object managerHandle ) : NodeHandle | ||
managerHandle | object | The handle to check. |
return | NodeHandle |
protected IsNodeIdInNamespace ( Opc.Ua.NodeId nodeId ) : bool | ||
nodeId | Opc.Ua.NodeId | The node id to check. |
return | bool |
protected IsNodeInView ( |
||
context | ||
continuationPoint | ||
node | NodeState | |
return | bool |
protected IsReferenceInView ( |
||
context | ||
continuationPoint | ||
reference | IReference | |
return | bool |
protected LoadPredefinedNodes ( ISystemContext context ) : NodeStateCollection | ||
context | ISystemContext | |
return | NodeStateCollection |
public LoadPredefinedNodes ( ISystemContext context, |
||
context | ISystemContext | |
assembly | ||
resourcePath | string | |
externalReferences | IDictionary |
|
return | void |
protected LoadPredefinedNodes ( ISystemContext context, IDictionary |
||
context | ISystemContext | |
externalReferences | IDictionary |
|
return | void |
protected LookupNodeInComponentCache ( ISystemContext context, NodeHandle handle ) : NodeState | ||
context | ISystemContext | |
handle | NodeHandle | |
return | NodeState |
protected ModifyMonitoredItem ( |
||
context | ||
diagnosticsMasks | DiagnosticsMasks | |
timestampsToReturn | TimestampsToReturn | |
monitoredItem | IMonitoredItem | |
itemToModify | ||
handle | NodeHandle | |
filterResult | MonitoringFilterResult | |
return |
public ModifyMonitoredItems ( |
||
context | ||
timestampsToReturn | TimestampsToReturn | |
monitoredItems | IList |
|
itemsToModify | IList |
|
errors | IList |
|
filterResults | IList |
|
return | void |
public New ( ISystemContext context, NodeState node ) : Opc.Ua.NodeId | ||
context | ISystemContext | The context. |
node | NodeState | The node. |
return | Opc.Ua.NodeId |
protected OnCreateMonitoredItemsComplete ( |
||
context | ||
monitoredItems | IList |
|
return | void |
protected OnDeleteMonitoredItemsComplete ( |
||
context | ||
monitoredItems | IList |
|
return | void |
protected OnModifyMonitoredItemsComplete ( |
||
context | ||
monitoredItems | IList |
|
return | void |
protected OnMonitoredItemCreated ( |
||
context | The context. | |
handle | NodeHandle | The handle for the node. |
monitoredItem | The monitored item. | |
return | void |
protected OnMonitoredItemDeleted ( |
||
context | The context. | |
handle | NodeHandle | The handle for the node. |
monitoredItem | The monitored item. | |
return | void |
protected OnMonitoredItemModified ( |
||
context | The context. | |
handle | NodeHandle | The handle for the node. |
monitoredItem | The monitored item. | |
return | void |
protected OnMonitoringModeChanged ( |
||
context | The context. | |
handle | NodeHandle | The handle for the node. |
monitoredItem | The monitored item. | |
previousMode | MonitoringMode | The previous monitoring mode. |
monitoringMode | MonitoringMode | The current monitoring mode. |
return | void |
protected OnNodeRemoved ( NodeState node ) : void | ||
node | NodeState | |
return | void |
protected OnReportEvent ( ISystemContext context, NodeState node, IFilterTarget e ) : void | ||
context | ISystemContext | |
node | NodeState | |
e | IFilterTarget | |
return | void |
protected OnSetMonitoringModeComplete ( |
||
context | ||
monitoredItems | IList |
|
return | void |
protected OnSubscribeToEvents ( |
||
context | The context. | |
monitoredNode | MonitoredNode | The monitored node. |
unsubscribe | bool | if set to |
return | void |
protected QuickstartNodeManager ( IServerInternal server ) : System | ||
server | IServerInternal | |
return | System |
protected QuickstartNodeManager ( IServerInternal server, ApplicationConfiguration configuration ) : System | ||
server | IServerInternal | |
configuration | ApplicationConfiguration | |
return | System |
public Read ( |
||
context | ||
maxAge | double | |
nodesToRead | IList |
|
values | IList |
|
errors | IList |
|
return | void |
protected Read ( |
||
context | The context. | |
nodesToRead | IList |
The nodes to read. |
values | IList |
The values. |
errors | IList |
The errors. |
nodesToValidate | List |
The nodes to validate. |
cache | NodeState>.IDictionary | The cache. |
return | void |
protected ReadInitialValue ( |
||
context | The context. | |
handle | NodeHandle | The item handle. |
monitoredItem | The monitored item. | |
return | void |
protected RemoveNodeFromComponentCache ( ISystemContext context, NodeHandle handle ) : void | ||
context | ISystemContext | |
handle | NodeHandle | |
return | void |
protected RemovePredefinedNode ( ISystemContext context, NodeState node, List |
||
context | ISystemContext | |
node | NodeState | |
referencesToRemove | List |
|
return | void |
protected RemoveRootNotifier ( NodeState notifier ) : void | ||
notifier | NodeState | The notifier. |
return | void |
protected ReviseAggregateFilter ( |
||
context | The context. | |
handle | NodeHandle | The handle. |
samplingInterval | double | The sampling interval for the monitored item. |
queueSize | uint | The queue size for the monitored item. |
filterToUse | The filter to revise. | |
return | Opc.Ua.StatusCode |
public SessionClosing ( |
||
context | ||
sessionId | Opc.Ua.NodeId | |
deleteSubscriptions | bool | |
return | void |
protected SetMonitoringMode ( |
||
context | ||
monitoredItem | IMonitoredItem | |
monitoringMode | MonitoringMode | |
handle | NodeHandle | |
return |
public SetMonitoringMode ( |
||
context | The context. | |
monitoringMode | MonitoringMode | The monitoring mode. |
monitoredItems | IList |
The set of monitoring items to update. |
processedItems | IList |
Flags indicating which items have been processed. |
errors | IList |
Any errors. |
return | void |
protected SetNamespaceIndexes ( ushort namespaceIndexes ) : void | ||
namespaceIndexes | ushort | |
return | void |
public SubscribeToAllEvents ( |
||
context | ||
subscriptionId | uint | |
monitoredItem | IEventMonitoredItem | |
unsubscribe | bool | |
return |
public SubscribeToEvents ( |
||
context | ||
sourceId | object | |
subscriptionId | uint | |
monitoredItem | IEventMonitoredItem | |
unsubscribe | bool | |
return |
protected SubscribeToEvents ( |
||
context | The context. | |
source | NodeState | The source. |
monitoredItem | IEventMonitoredItem | The monitored item. |
unsubscribe | bool | if set to |
return |
public TranslateBrowsePath ( |
||
context | ||
sourceHandle | object | |
relativePath | RelativePathElement | |
targetIds | IList |
|
unresolvedTargetIds | IList |
|
return | void |
protected ValidateMonitoringFilter ( |
||
context | ||
handle | NodeHandle | |
attributeId | uint | |
samplingInterval | double | |
queueSize | uint | |
filter | Opc.Ua.ExtensionObject | |
filterToUse | MonitoringFilter | |
range | ||
result | MonitoringFilterResult | |
return | Opc.Ua.StatusCode |
protected ValidateNode ( |
||
context | ||
handle | NodeHandle | |
cache | NodeState>.IDictionary | |
return | NodeState |
protected ValidateViewDescription ( |
||
context | ||
view | ||
return | void |
protected ValidationComplete ( |
||
context | ||
handle | NodeHandle | |
node | NodeState | |
cache | NodeState>.IDictionary | |
return | NodeState |
public Write ( |
||
context | ||
nodesToWrite | IList |
|
errors | IList |
|
return | void |
protected Write ( |
||
context | The context. | |
nodesToWrite | IList |
The nodes to write. |
errors | IList |
The errors. |
nodesToValidate | List |
The nodes to validate. |
cache | NodeState>.IDictionary | The cache. |
return | void |