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

hasObject2() public method

Slow half of hasObject(AnyObjectId).
public hasObject2 ( string objectName ) : bool
objectName string /// Identity of the object to test for existence of. ///
return bool
        public virtual bool hasObject2(string objectName)
        {
            // Assume the search took place during hasObject1.
            return false;
        }

Usage Example

コード例 #1
0
 public override bool hasObject2(string objectName)
 {
     return(_objectDatabase.hasObject2(objectName));
 }
All Usage Examples Of GitSharp.Core.ObjectDatabase::hasObject2