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

Clone() public method

public Clone ( ) : CmisPath
return CmisPath
        public CmisPath Clone()
        {
            return new CmisPath(_path);
        }

Usage Example

Ejemplo 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::Clone