Clone() public method

public Clone ( ) : CmisPath
return CmisPath
Ejemplo n.º 1
0
 public CmisPath Combine(CmisPath other)
 {
     if (other.IsAbsolutePath())
     {
         return other.Clone();
     }
     return new CmisPath(_path + CorrectSlash + other.ToString());
 }
Ejemplo n.º 2
0
 public CmisPath Combine(CmisPath other)
 {
     if (other.IsAbsolutePath())
     {
         return(other.Clone());
     }
     return(new CmisPath(_path + CorrectSlash + other.ToString()));
 }