Cmis.Utility.CmisPath.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            return _path;
        }

Usage Example

Exemplo n.º 1
0
 public CmisPath Combine(CmisPath other)
 {
     if (other.IsAbsolutePath())
     {
         return other.Clone();
     }
     return new CmisPath(_path + CorrectSlash + other.ToString());
 }
All Usage Examples Of Cmis.Utility.CmisPath::ToString