SenseNet.ContentRepository.Storage.RepositoryPath.PathExists C# (CSharp) Method

PathExists() private method

private PathExists ( string path ) : bool
path string
return bool
        public static bool PathExists(string path)
        {
            if (path == null)
                throw new ArgumentNullException("path");

            return DataProvider.NodeExists(path);
        }
        [Obsolete("Use Node.Exists instead.")]