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

hasObject() публичный Метод

Does the requested object exist in this database? Alternates (if present) are searched automatically.
public hasObject ( AnyObjectId objectId ) : bool
objectId AnyObjectId identity of the object to test for existence of.
Результат bool
        public bool hasObject(AnyObjectId objectId)
        {
            return hasObjectImpl1(objectId) || hasObjectImpl2(objectId.ToString());
        }