예제 #1
0
 public static NodeUri CreateLocalNodeUri(string localPath = null)
 {
   var localhost = new NodeUri($"{UriScheme}{SchemeDelimiter}./", UriKind.Absolute);
   return localPath == null ? localhost : new NodeUri(localhost, localPath);
 }
예제 #2
0
 public NodeUri(NodeUri nodeUri, string nodeId) : base(nodeUri, nodeId)
 { }