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