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

openObject1() public abstract method

Fast half of openObject(WindowCursor, AnyObjectId).
public abstract openObject1 ( GitSharp.Core.WindowCursor curs, AnyObjectId objectId ) : GitSharp.Core.ObjectLoader
curs GitSharp.Core.WindowCursor /// temporary working space associated with the calling thread. ///
objectId AnyObjectId identity of the object to open.
return GitSharp.Core.ObjectLoader
        public abstract ObjectLoader openObject1(WindowCursor curs,
                AnyObjectId objectId);

Usage Example

コード例 #1
0
 public override ObjectLoader openObject1(WindowCursor curs, AnyObjectId objectId)
 {
     return(_objectDatabase.openObject1(curs, objectId));
 }
All Usage Examples Of GitSharp.Core.ObjectDatabase::openObject1