GitSharp.Core.ObjectDatabase.exists C# (CSharp) Method

exists() public method

Gets if this database is already created; If it returns false, the caller should invoke create to create this database location.
public exists ( ) : bool
return bool
        public virtual bool exists()
        {
            return true;
        }

Usage Example

Beispiel #1
0
 public override bool exists()
 {
     return(_objectDatabase.exists());
 }