C# Class Opc.Ua.Com.Server.ComAe2Browser

A base class for classes that implement an OPC COM specification.
Inheritance: IDisposable
Afficher le fichier Open project: OPCFoundation/UA-.NET Class Usage Examples

Méthodes publiques

Méthode Description
Browse ( bool isArea, string filter ) : IList

Browses the current branch.

BrowseDown ( string targetName ) : void

Moves the current browse position down.

BrowseTo ( string itemId ) : void

Moves the current browse position to the specified item.

BrowseUp ( ) : void

Moves the current browse position up.

ComAe2Browser ( ComAe2Proxy server, ComAe2ProxyConfiguration configuration, ComAeNamespaceMapper mapper ) : System

Initializes a new instance of the ComHdaBrowser class.

Dispose ( ) : void

Frees any unmanaged resources.

GetQualifiedName ( string targetName, bool isArea ) : string

Gets the qualified name.

IsValidQualifiedName ( string itemId, bool isArea ) : bool

Checks if the item id identified by the is a valid area or source.

SearchByQualifiedName ( string pattern, bool isArea ) : List

Returns the areas or sources that meet search pattern.

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

An overrideable version of the Dispose.

Private Methods

Méthode Description
Browse ( Session session, AeBrowseElement start, bool isArea ) : List

Fetches the children from the server.

Browse ( Session session, AeBrowseElement start, string pattern, bool isArea ) : List

Finds the children that match the pattern (updates cache if required).

Find ( Session session, string itemId, AeBrowseElement root, Stack names, bool isArea ) : AeBrowseElement

Finds an element identified by the path from the root.

Find ( Session session, string itemId, bool isArea ) : AeBrowseElement

Finds the area/source with the specified identifier.

FindRoot ( string itemId, Stack names ) : AeBrowseElement

Parses the item if looking for a known root element.

IsWildcardChar ( char ch ) : bool

Returns true if char is one of the special chars that must be escaped.

ThrowIfDisposed ( ) : void

Throws if disposed.

Method Details

Browse() public méthode

Browses the current branch.
public Browse ( bool isArea, string filter ) : IList
isArea bool
filter string
Résultat IList

BrowseDown() public méthode

Moves the current browse position down.
public BrowseDown ( string targetName ) : void
targetName string
Résultat void

BrowseTo() public méthode

Moves the current browse position to the specified item.
public BrowseTo ( string itemId ) : void
itemId string
Résultat void

BrowseUp() public méthode

Moves the current browse position up.
public BrowseUp ( ) : void
Résultat void

ComAe2Browser() public méthode

Initializes a new instance of the ComHdaBrowser class.
public ComAe2Browser ( ComAe2Proxy server, ComAe2ProxyConfiguration configuration, ComAeNamespaceMapper mapper ) : System
server ComAe2Proxy
configuration ComAe2ProxyConfiguration
mapper ComAeNamespaceMapper
Résultat System

Dispose() public méthode

Frees any unmanaged resources.
public Dispose ( ) : void
Résultat void

Dispose() protected méthode

An overrideable version of the Dispose.
protected Dispose ( bool disposing ) : void
disposing bool
Résultat void

GetQualifiedName() public méthode

Gets the qualified name.
public GetQualifiedName ( string targetName, bool isArea ) : string
targetName string
isArea bool
Résultat string

IsValidQualifiedName() public méthode

Checks if the item id identified by the is a valid area or source.
public IsValidQualifiedName ( string itemId, bool isArea ) : bool
itemId string
isArea bool
Résultat bool

SearchByQualifiedName() public méthode

Returns the areas or sources that meet search pattern.
public SearchByQualifiedName ( string pattern, bool isArea ) : List
pattern string
isArea bool
Résultat List