Opc.Ua.RelativePath.Format C# (CSharp) Method

Format() public method

Formats the relative path as a string.
public Format ( ITypeTable typeTree ) : string
typeTree ITypeTable
return string
        public string Format(ITypeTable typeTree)
        {
            RelativePathFormatter formatter = new RelativePathFormatter(this, typeTree);
            return formatter.ToString();
        }