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

hasObject1() public abstract method

Fast half of hasObject(AnyObjectId).
public abstract hasObject1 ( AnyObjectId objectId ) : bool
objectId AnyObjectId /// Identity of the object to test for existence of. ///
return bool
        public abstract bool hasObject1(AnyObjectId objectId);

Usage Example

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