IsAbsolutePath() public méthode

public IsAbsolutePath ( ) : bool
Résultat bool
 public CmisPath Combine(CmisPath other)
 {
     if (other.IsAbsolutePath())
     {
         return other.Clone();
     }
     return new CmisPath(_path + CorrectSlash + other.ToString());
 }
Exemple #2
0
 public CmisPath Combine(CmisPath other)
 {
     if (other.IsAbsolutePath())
     {
         return(other.Clone());
     }
     return(new CmisPath(_path + CorrectSlash + other.ToString()));
 }