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

Write Git style pkt-line formatting to an output stream. This class is not thread safe and may issue multiple writes to the underlying stream for each method call made. This class performs no buffering on its own. This makes it suitable to interleave writes performed by this class with writes performed directly against the underlying OutputStream.
파일 보기 프로젝트 열기: stschake/GitSharp 1 사용 예제들

공개 메소드들

메소드 설명
End ( ) : void
Flush ( ) : void
PacketLineOut ( Stream i ) : System
WriteChannelPacket ( int channel, byte buf, int off, int len ) : void
WritePacket ( byte packet ) : void
WriteString ( string s ) : void

비공개 메소드들

메소드 설명
formatLength ( int w ) : void

메소드 상세

End() 공개 메소드

public End ( ) : void
리턴 void

Flush() 공개 메소드

public Flush ( ) : void
리턴 void

PacketLineOut() 공개 메소드

public PacketLineOut ( Stream i ) : System
i System.IO.Stream
리턴 System

WriteChannelPacket() 공개 메소드

public WriteChannelPacket ( int channel, byte buf, int off, int len ) : void
channel int
buf byte
off int
len int
리턴 void

WritePacket() 공개 메소드

public WritePacket ( byte packet ) : void
packet byte
리턴 void

WriteString() 공개 메소드

public WriteString ( string s ) : void
s string
리턴 void