C# Class System.IO.UnmanagedMemoryStream.UnmanagedMemoryStream

Inheritance: Stream
显示文件 Open project: runefs/Marvin

Private Properties

Property Type Description

Public Methods

Method Description
Close ( ) : void
Flush ( ) : void
Read ( [ buffer, int offset, int count ) : int
ReadByte ( ) : int
Seek ( long offset, SeekOrigin loc ) : long
SetLength ( long value ) : void
UnmanagedMemoryStream ( byte pointer, long length ) : System
UnmanagedMemoryStream ( byte pointer, long length, long capacity, FileAccess access ) : System
Write ( byte buffer, int offset, int count ) : void
WriteByte ( byte value ) : void

Protected Methods

Method Description
Dispose ( bool disposing ) : void
Initialize ( byte pointer, long length, long capacity, FileAccess access ) : void
UnmanagedMemoryStream ( ) : System

Method Details

Close() public method

public Close ( ) : void
return void

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

Flush() public method

public Flush ( ) : void
return void

Initialize() protected method

protected Initialize ( byte pointer, long length, long capacity, FileAccess access ) : void
pointer byte
length long
capacity long
access FileAccess
return void

Read() public method

public Read ( [ buffer, int offset, int count ) : int
buffer [
offset int
count int
return int

ReadByte() public method

public ReadByte ( ) : int
return int

Seek() public method

public Seek ( long offset, SeekOrigin loc ) : long
offset long
loc SeekOrigin
return long

SetLength() public method

public SetLength ( long value ) : void
value long
return void

UnmanagedMemoryStream() protected method

protected UnmanagedMemoryStream ( ) : System
return System

UnmanagedMemoryStream() public method

public UnmanagedMemoryStream ( byte pointer, long length ) : System
pointer byte
length long
return System

UnmanagedMemoryStream() public method

public UnmanagedMemoryStream ( byte pointer, long length, long capacity, FileAccess access ) : System
pointer byte
length long
capacity long
access FileAccess
return System

Write() public method

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

WriteByte() public method

public WriteByte ( byte value ) : void
value byte
return void