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

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

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