GitSharp.Core.ObjectDatabase.hasObject1 C# (CSharp) Метод

hasObject1() публичный абстрактный Метод

Fast half of hasObject(AnyObjectId).
public abstract hasObject1 ( AnyObjectId objectId ) : bool
objectId AnyObjectId /// Identity of the object to test for existence of. ///
Результат 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