C# 클래스 GitSharp.Core.Transport.PackedObjectInfo

Description of an object stored in a pack file, including offset.

When objects are stored in packs Git needs the ObjectId and the offset (starting position of the object data) to perform random-access reads of objects from the pack. This extension of ObjectId includes the offset.

상속: ObjectId
파일 보기 프로젝트 열기: stschake/GitSharp 1 사용 예제들

공개 메소드들

메소드 설명
PackedObjectInfo ( AnyObjectId id )

Create a new structure to remember information about an object.

PackedObjectInfo ( long headerOffset, int packedCRC, AnyObjectId id )

메소드 상세

PackedObjectInfo() 공개 메소드

Create a new structure to remember information about an object.
public PackedObjectInfo ( AnyObjectId id )
id AnyObjectId /// The identity of the object the new instance tracks. ///

PackedObjectInfo() 공개 메소드

public PackedObjectInfo ( long headerOffset, int packedCRC, AnyObjectId id )
headerOffset long
packedCRC int
id AnyObjectId