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

OpenObjectInAllPacksImplementation() public method

Open the object from all packs containing it. If any alternates are present, their packs are also considered.
public OpenObjectInAllPacksImplementation ( ICollection @out, GitSharp.Core.WindowCursor windowCursor, AnyObjectId objectId ) : void
@out ICollection
windowCursor GitSharp.Core.WindowCursor /// Temporary working space associated with the calling thread. ///
objectId AnyObjectId of object to search for.
return void
        public virtual void OpenObjectInAllPacksImplementation(ICollection<PackedObjectLoader> @out, WindowCursor windowCursor, AnyObjectId objectId)
        {
            // Assume no pack support
        }

Usage Example

コード例 #1
0
 public override void OpenObjectInAllPacksImplementation(ICollection <PackedObjectLoader> @out, WindowCursor windowCursor, AnyObjectId objectId)
 {
     _objectDatabase.OpenObjectInAllPacksImplementation(@out, windowCursor, objectId);
 }