The Stream Classes : Stream « File Directory Stream « C# / CSharp Tutorial

Home
C# / CSharp Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statement
5.String
6.struct
7.Class
8.Operator Overload
9.delegate
10.Attribute
11.Data Structure
12.Assembly
13.Date Time
14.Development
15.File Directory Stream
16.Preprocessing Directives
17.Regular Expression
18.Generic
19.Reflection
20.Thread
21.I18N Internationalization
22.LINQ
23.GUI Windows Forms
24.Windows Presentation Foundation
25.Windows Communication Foundation
26.Workflow
27.2D
28.Design Patterns
29.Windows
30.XML
31.XML LINQ
32.ADO.Net
33.Network
34.Directory Services
35.Security
36.unsafe
C# / C Sharp
C# / C Sharp by API
C# / CSharp Open Source
C# / CSharp Tutorial » File Directory Stream » Stream 
15.18.2.The Stream Classes
  1. System.IO.Stream represents a byte stream
  2. System.IO.Stream is a base class for all other stream classes.
  3. System.IO.Stream is abstract.

Some of the Methods Defined by Stream

MethodDescription
void Close()Closes the stream.
void Flush()Flush the stream.
int ReadByte()Returns an integer representation of a byte of input. Returns -1 if no byte is available.
int Read(byte[ ] buf,int offset, int numBytes)Attempts to read up to numBytes bytes into buf starting at buf[offset], returning the number of bytes successfully read.
long Seek(long offset,SeekOrigin origin)Sets the current position in the stream to the specified offset from the specified origin.
void WriteByte(byte b)Writes a single byte to an output stream.
void Write(byte[ ] buf,int offset, int numBytes)Writes a subrange of numBytes bytes from the array buf, beginning at buf[offset].


The Properties Defined by Stream

MethodDescription
bool CanReadcan be read or not. (read-only)
bool CanSeeksupports position requests or not. (read-only)
bool CanWritecan be written or not. (read-only)
long Lengththe length of the stream. (read-only)
long Positionthe current position of the stream. (read/write)


15.18.Stream
15.18.1.C#'s I/O Is Built Upon Streams
15.18.2.The Stream Classes
15.18.3.The Byte Stream Classes and The Character Stream Wrapper Classes
15.18.4.Stream seeking: SeekOrigin.Current, SeekOrigin.Begin, SeekOrigin.End
15.18.5.Using streamreader to decode streams
15.18.6.Using streamreader to read entire lines at a time
15.18.7.Using streamreader to read the entire stream at once
15.18.8.Reading from a stream, casting to chars
15.18.9.Reading from a stream buffer at a time
15.18.10.Implementing Binary Read Write To File
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.