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

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

Open the object from all packs containing it. If any alternates are present, their packs are also considered.
public OpenObjectInAllPacks ( 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.
Результат void
        public void OpenObjectInAllPacks(ICollection<PackedObjectLoader> @out, WindowCursor windowCursor, AnyObjectId objectId)
        {
            OpenObjectInAllPacksImplementation(@out, windowCursor, objectId);
            foreach (ObjectDatabase alt in getAlternates())
            {
                alt.OpenObjectInAllPacksImplementation(@out, windowCursor, objectId);
            }
        }

Usage Example

Пример #1
0
 public override void OpenObjectInAllPacks(ICollection <PackedObjectLoader> @out,
                                           WindowCursor curs, AnyObjectId objectId)
 {
     wrapped.OpenObjectInAllPacks(@out, curs, objectId);
 }