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

openObject2() public method

Slow half of openObject(WindowCursor, AnyObjectId).
public openObject2 ( GitSharp.Core.WindowCursor curs, string objectName, AnyObjectId objectId ) : GitSharp.Core.ObjectLoader
curs GitSharp.Core.WindowCursor /// temporary working space associated with the calling thread. ///
objectName string Name of the object to open.
objectId AnyObjectId identity of the object to open.
return GitSharp.Core.ObjectLoader
        public virtual ObjectLoader openObject2(WindowCursor curs, string objectName,
                AnyObjectId objectId)
        {
            // Assume the search took place during openObject1.
            return null;
        }

Usage Example

Esempio n. 1
0
 public override ObjectLoader openObject2(WindowCursor curs, string objectName, AnyObjectId objectId)
 {
     return(_objectDatabase.openObject2(curs, objectName, objectId));
 }