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

IsAbsolutePath() public method

public IsAbsolutePath ( ) : bool
return bool
        public bool IsAbsolutePath()
        {
            return _path.StartsWith(CorrectSlash);
        }

Usage Example

示例#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::IsAbsolutePath