C# Class Opc.Ua.BaseTypeState

The base class for all type nodes.
Inheritance: NodeState
ファイルを表示 Open project: OPCFoundation/UA-.NETStandardLibrary Class Usage Examples

Public Properties

Property Type Description
OnReadIsAbstract NodeAttributeEventHandler
OnWriteIsAbstract NodeAttributeEventHandler

Public Methods

Method Description
GetAttributesToSave ( ISystemContext context ) : AttributesToSave

Returns a mask which indicates which attributes have non-default value.

MemberwiseClone ( ) : object

Makes a copy of the node and all children.

Save ( ISystemContext context, BinaryEncoder encoder, AttributesToSave attributesToSave ) : void

Saves object in an binary stream.

Save ( ISystemContext context, XmlEncoder encoder ) : void

Saves the attributes from the stream.

Update ( ISystemContext context, BinaryDecoder decoder, AttributesToSave attibutesToLoad ) : void

Updates the specified context.

Update ( ISystemContext context, XmlDecoder decoder ) : void

Updates the attributes from the stream.

Protected Methods

Method Description
BaseTypeState ( NodeClass nodeClass ) : System

Initializes the type with its defalt attribute values.

Export ( ISystemContext context, Node node ) : void

Exports a copt of the node to a node table.

Initialize ( ISystemContext context, NodeState source ) : void

Initializes the instance from another instance.

PopulateBrowser ( ISystemContext context, NodeBrowser browser ) : void

Populates the browser with references that meet the criteria.

ReadNonValueAttribute ( ISystemContext context, uint attributeId, object &value ) : ServiceResult

Reads the value for any non-value attribute.

WriteNonValueAttribute ( ISystemContext context, uint attributeId, object value ) : ServiceResult

Write the value for any non-value attribute.

Method Details

BaseTypeState() protected method

Initializes the type with its defalt attribute values.
protected BaseTypeState ( NodeClass nodeClass ) : System
nodeClass NodeClass
return System

Export() protected method

Exports a copt of the node to a node table.
protected Export ( ISystemContext context, Node node ) : void
context ISystemContext The context.
node Node The node.
return void

GetAttributesToSave() public method

Returns a mask which indicates which attributes have non-default value.
public GetAttributesToSave ( ISystemContext context ) : AttributesToSave
context ISystemContext The context for the system being accessed.
return AttributesToSave

Initialize() protected method

Initializes the instance from another instance.
protected Initialize ( ISystemContext context, NodeState source ) : void
context ISystemContext
source NodeState
return void

MemberwiseClone() public method

Makes a copy of the node and all children.
public MemberwiseClone ( ) : object
return object

PopulateBrowser() protected method

Populates the browser with references that meet the criteria.
protected PopulateBrowser ( ISystemContext context, NodeBrowser browser ) : void
context ISystemContext The context for the current operation.
browser NodeBrowser The browser to populate.
return void

ReadNonValueAttribute() protected method

Reads the value for any non-value attribute.
protected ReadNonValueAttribute ( ISystemContext context, uint attributeId, object &value ) : ServiceResult
context ISystemContext
attributeId uint
value object
return ServiceResult

Save() public method

Saves object in an binary stream.
public Save ( ISystemContext context, BinaryEncoder encoder, AttributesToSave attributesToSave ) : void
context ISystemContext The context user.
encoder BinaryEncoder The encoder to write to.
attributesToSave AttributesToSave The masks indicating what attributes to write.
return void

Save() public method

Saves the attributes from the stream.
public Save ( ISystemContext context, XmlEncoder encoder ) : void
context ISystemContext The context for the system being accessed.
encoder XmlEncoder The encoder wrapping the stream to write.
return void

Update() public method

Updates the specified context.
public Update ( ISystemContext context, BinaryDecoder decoder, AttributesToSave attibutesToLoad ) : void
context ISystemContext The context.
decoder BinaryDecoder The decoder.
attibutesToLoad AttributesToSave The attributes to load.
return void

Update() public method

Updates the attributes from the stream.
public Update ( ISystemContext context, XmlDecoder decoder ) : void
context ISystemContext The context for the system being accessed.
decoder XmlDecoder The decoder wrapping the stream to read.
return void

WriteNonValueAttribute() protected method

Write the value for any non-value attribute.
protected WriteNonValueAttribute ( ISystemContext context, uint attributeId, object value ) : ServiceResult
context ISystemContext
attributeId uint
value object
return ServiceResult

Property Details

OnReadIsAbstract public_oe property

Raised when the IsAbstract attribute is read.
public NodeAttributeEventHandler OnReadIsAbstract
return NodeAttributeEventHandler

OnWriteIsAbstract public_oe property

Raised when the IsAbstract attribute is written.
public NodeAttributeEventHandler OnWriteIsAbstract
return NodeAttributeEventHandler