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