IOpcDataStore Members

Namespace: Opc.UaFx
Assemblies: Opc.UaFx.Advanced.dll, Opc.UaFx.Advanced.dll
The IOpcDataStore interface defines the following members.

Get<T>(String)

Retrieves the value of the of the entry accessible through the name specified.

C#

T Get<T>(string name = "")


Parameters

name String

The String to use to identify the entry its value is to be retrieved.


Returns

T

The T of the value of the entry requested or the default value if the value is not of the type specified by T.

Set<T>(String, T)

Stores the value of the entry accessible throught the name specified.

C#

void Set<T>(string name = "", T value = null)


Parameters

name String

The String to use to identify the entry its value is to be stored.

value T

The T to associate with the entry accesibly by the name specified.