Exemplo n.º 1
0
 public NodeId(UAConst NumericIdentifier)
 {
     this.NamespaceIndex    = 0;
     this.NumericIdentifier = (uint)NumericIdentifier;
     this.IdType            = NodeIdNetType.Numeric;
 }
Exemplo n.º 2
0
 public NodeId(RequestCode NumericIdentifier)
 {
     this.NamespaceIndex    = 0;
     this.NumericIdentifier = (uint)NumericIdentifier;
     this.IdType            = NodeIdNetType.Numeric;
 }
Exemplo n.º 3
0
 public NodeId(UInt32 NumericIdentifier)
 {
     this.NamespaceIndex    = 0;
     this.NumericIdentifier = NumericIdentifier;
     this.IdType            = NodeIdNetType.Numeric;
 }
Exemplo n.º 4
0
 public NodeId(UInt16 NamespaceIndex, byte[] ByteStringIdentifier)
 {
     this.NamespaceIndex       = NamespaceIndex;
     this.ByteStringIdentifier = ByteStringIdentifier;
     this.IdType = NodeIdNetType.ByteString;
 }
Exemplo n.º 5
0
 public NodeId(UInt16 NamespaceIndex, string StringIdentifier)
 {
     this.NamespaceIndex   = NamespaceIndex;
     this.StringIdentifier = StringIdentifier ?? string.Empty;
     this.IdType           = NodeIdNetType.String;
 }
Exemplo n.º 6
0
 public NodeId(ushort NamespaceIndex, uint NumericIdentifier)
 {
     this.NamespaceIndex    = NamespaceIndex;
     this.NumericIdentifier = NumericIdentifier;
     this.IdType            = NodeIdNetType.Numeric;
 }
Exemplo n.º 7
0
 public NodeId(ushort NamespaceIndex, byte[] ByteStringIdentifier, NodeIdNetType IdType)
 {
     this.NamespaceIndex       = NamespaceIndex;
     this.ByteStringIdentifier = ByteStringIdentifier;
     this.IdType = IdType;
 }