C# 클래스 Mosa.AppSystem.AppOutputStream

상속: System.IO.Stream
파일 보기 프로젝트 열기: tgiphil/MOSA-Project 1 사용 예제들

공개 메소드들

메소드 설명
AppOutputStream ( ConsoleSession session ) : System.IO

Initializes a new instance of the AppOutputStream class.

Flush ( ) : void

Read ( byte buffer, int offset, int count ) : int

Reads the specified buffer.

ReadByte ( ) : int

Seek ( long offset, SeekOrigin origin ) : long

Seeks the specified offset.

SetLength ( long value ) : void

Sets the length.

Write ( byte buffer, int offset, int count ) : void

Writes the specified buffer.

WriteByte ( byte value ) : void

Writes the byte.

메소드 상세

AppOutputStream() 공개 메소드

Initializes a new instance of the AppOutputStream class.
public AppOutputStream ( ConsoleSession session ) : System.IO
session Mosa.Kernel.x86.ConsoleSession The session.
리턴 System.IO

Flush() 공개 메소드

public Flush ( ) : void
리턴 void

Read() 공개 메소드

Reads the specified buffer.
public Read ( byte buffer, int offset, int count ) : int
buffer byte The buffer.
offset int The offset.
count int The count.
리턴 int

ReadByte() 공개 메소드

public ReadByte ( ) : int
리턴 int

Seek() 공개 메소드

Seeks the specified offset.
public Seek ( long offset, SeekOrigin origin ) : long
offset long The offset.
origin SeekOrigin The origin.
리턴 long

SetLength() 공개 메소드

Sets the length.
public SetLength ( long value ) : void
value long The value.
리턴 void

Write() 공개 메소드

Writes the specified buffer.
public Write ( byte buffer, int offset, int count ) : void
buffer byte The buffer.
offset int The offset.
count int The count.
리턴 void

WriteByte() 공개 메소드

Writes the byte.
public WriteByte ( byte value ) : void
value byte The value.
리턴 void