메소드 | 설명 | |
---|---|---|
BinaryStream ( ) : System |
Creates a BinaryStream that is in memory only.
|
|
BinaryStream ( ISupportsBinaryStream stream, bool leaveOpen = true ) : System |
Creates a BinaryStream that is at position 0 of the provided stream.
|
|
BinaryStream ( |
Creates a BinaryStream that is in memory only.
|
|
BinaryStream ( bool allocatesOwnMemory ) : System |
Creates a BinaryStream that is in memory only.
|
|
ClearLocks ( ) : void |
When accessing the underlying stream, a lock is placed on the data. Calling this method clears that lock.
|
|
UpdateLocalBuffer ( bool isWriting ) : void |
Updates the local buffer data.
|
메소드 | 설명 | |
---|---|---|
Dispose ( bool disposing ) : void |
메소드 | 설명 | |
---|---|---|
CreatePool ( bool allocatesOwnMemory ) : ISupportsBinaryStream |
public BinaryStream ( ISupportsBinaryStream stream, bool leaveOpen = true ) : System | ||
stream | ISupportsBinaryStream | The base stream to use. |
leaveOpen | bool | Determines if the underlying stream will automatically be /// disposed of when this class has it's dispose method called. |
리턴 | System |
public BinaryStream ( bool allocatesOwnMemory ) : System | ||
allocatesOwnMemory | bool | true to allowcate its own memory rather than using the |
리턴 | System |
public UpdateLocalBuffer ( bool isWriting ) : void | ||
isWriting | bool | hints to the stream if write access is desired. |
리턴 | void |