Class FileStream
- Namespace
- CMS.FileSystemStorage
- Assembly
- CMS.IO.dll
Envelope for FileStream classes (System.IO).
public class FileStream : FileStream
- Inheritance
-
objectMarshalByRefObjectStreamFileStream
- Inherited Members
- Extension Methods
Constructors
FileStream(FileStream)
Initializes new instance and intializes new system file stream.
public FileStream(FileStream fs)
Parameters
fs
FileStreamFile stream
FileStream(string, FileMode)
Initializes new instance and intializes new system file stream.
public FileStream(string path, FileMode mode)
Parameters
path
stringPath to file
mode
FileModeFile mode
FileStream(string, FileMode, FileAccess)
Initializes new instance and intializes new system file stream.
public FileStream(string path, FileMode mode, FileAccess access)
Parameters
path
stringPath to file
mode
FileModeFile mode
access
FileAccessFile access
FileStream(string, FileMode, FileAccess, FileShare)
Initializes new instance and intializes new system file stream.
public FileStream(string path, FileMode mode, FileAccess access, FileShare share)
Parameters
path
stringPath to file
mode
FileModeFile mode
access
FileAccessFile access
share
FileShareSharing permissions
FileStream(string, FileMode, FileAccess, FileShare, int)
Initializes new instance and intializes new system file stream.
public FileStream(string path, FileMode mode, FileAccess access, FileShare share, int bufferSize)
Parameters
path
stringPath to file
mode
FileModeFile mode
access
FileAccessFile access
share
FileShareSharing permissions
bufferSize
intBuffer size
Properties
CanRead
Gets a value indicating whether the current stream supports reading.
public override bool CanRead { get; }
Property Value
- bool
CanSeek
Gets a value indicating whether the current stream supports seeking.
public override bool CanSeek { get; }
Property Value
- bool
True if the stream supports seeking, false otherwise.
CanWrite
Gets a value indicating whether the current stream supports writing.
public override bool CanWrite { get; }
Property Value
- bool
Length
Gets the length in bytes of the stream.
public override long Length { get; }
Property Value
- long
Position
Gets or sets the position within the current stream.
public override long Position { get; set; }
Property Value
- long
Methods
Close()
Closes the current stream and releases any resources (such as sockets and file handles) associated with the current stream.
public override void Close()
Dispose(bool)
Releases all unmanaged and optionally managed resources.
protected override void Dispose(bool disposing)
Parameters
disposing
boolWhen true, managed resources are released.
Flush()
Clears all buffers for this stream and causes any buffered data to be written to the underlying device.
public override void Flush()
FlushAsync(CancellationToken)
Asynchronously clears all buffers for this stream and causes any buffered data to be written to the underlying device.
public override Task FlushAsync(CancellationToken cancellationToken)
Parameters
cancellationToken
CancellationTokenThe token to monitor for cancellation requests.
Returns
- Task
Read(byte[], int, int)
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
public override int Read(byte[] array, int offset, int count)
Parameters
array
byte[]The buffer to write the data into.
offset
intThe byte offset in
array
at which to begin writing data from the stream.count
intThe maximum number of bytes to read.
Returns
- int
ReadAsync(byte[], int, int, CancellationToken)
Asynchronously reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
public override Task<int> ReadAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
Parameters
buffer
byte[]The buffer to write the data into.
offset
intThe byte offset in
buffer
at which to begin writing data from the stream.count
intThe maximum number of bytes to read.
cancellationToken
CancellationTokenThe token to monitor for cancellation requests.
Returns
- Task<int>
Seek(long, SeekOrigin)
Sets cursor position at specified position.
public override long Seek(long offset, SeekOrigin loc)
Parameters
offset
longOffset from beginning of file
loc
SeekOriginSeek origin
Returns
- long
SetLength(long)
Sets the length of the current stream.
public override void SetLength(long value)
Parameters
value
longThe desired length of the current stream in bytes.
Write(byte[], int, int)
Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
public override void Write(byte[] buffer, int offset, int count)
Parameters
buffer
byte[]The buffer to write data from.
offset
intThe zero-based byte offset in
buffer
from which to begin copying bytes to the stream.count
intThe maximum number of bytes to write.
WriteAsync(byte[], int, int, CancellationToken)
Asynchronously writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
public override Task WriteAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
Parameters
buffer
byte[]The buffer to write data from.
offset
intThe zero-based byte offset in
buffer
from which to begin copying bytes to the stream.count
intThe maximum number of bytes to write.
cancellationToken
CancellationTokenThe token to monitor for cancellation requests.
Returns
- Task
WriteByte(byte)
Writes byte to stream.
public override void WriteByte(byte value)
Parameters
value
byteValue to write