GraphicsStream Members
Include Protected Members
Include Inherited Members
Include .NET Framework Members
Include .NET Compact Framework Members
Include XNA Framework Members
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Contains a graphics data stream.
The GraphicsStream type exposes the following members.
Constructors
Name | Description | |
---|---|---|
GraphicsStream | Overloaded. Initializes a new instance of the GraphicsStream class. |
Top
Methods
Name | Description | |
---|---|---|
BeginRead | Begins an asynchronous read operation. (Inherited from Stream.) | |
BeginWrite | Begins an asynchronous write operation. (Inherited from Stream.) | |
Close | Closes the current stream and releases any resources (such as sockets and file handles) associated with the current stream. (Inherited from Stream.) | |
CreateWaitHandle | Obsolete. Allocates a WaitHandle object. (Inherited from Stream.) | |
Dispose | Overloaded. | |
EndRead | Waits for the pending asynchronous read to complete. (Inherited from Stream.) | |
EndWrite | Ends an asynchronous write operation. (Inherited from Stream.) | |
Equals | Determines whether the specified Object is equal to the current Object. (Overrides Object.Equals(Object).) | |
Finalize | Called during garbage collection. If implemented, allows an object to free resources before it is destroyed by the garbage collector. (Overrides Object.Finalize().) | |
Flush | Flushing the graphics stream is not supported. (Overrides Stream.Flush().) | |
GetHashCode | This member overrides GetHashCode. (Overrides Object.GetHashCode().) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
Read | Overloaded. Reads from the current stream and advances the position within it by the number of bytes read. | |
ReadByte | Reads a byte from the stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream. (Inherited from Stream.) | |
Seek | Sets the position within the current stream. (Overrides Stream.Seek(Int64, SeekOrigin).) | |
SetLength | Resizing the graphics stream is not supported. (Overrides Stream.SetLength(Int64).) | |
ToString | Returns a String that represents the current Object. (Inherited from Object.) | |
Write | Overloaded. Writes to the current stream and advances the current position within it by the number of bytes written. | |
WriteByte | Writes a byte to the current position in the stream and advances the position within the stream by one byte. (Inherited from Stream.) |
Top
Properties
Name | Description | |
---|---|---|
CanRead | Gets a value that indicates whether the current stream supports reading. (Overrides Stream.CanRead.) | |
CanSeek | Gets a value that indicates whether the current stream supports seeking. (Overrides Stream.CanSeek.) | |
CanTimeout | Gets a value that determines whether the current stream can time out. (Inherited from Stream.) | |
CanWrite | Gets a value that indicates whether the current stream supports writing. (Overrides Stream.CanWrite.) | |
InternalBuffer | Gets a direct pointer to a COM object that ensures that the unmanaged memory remains allocated. | |
InternalData | Gets a direct pointer to the unmanaged memory. | |
Length | Gets the length of the stream. (Overrides Stream.Length.) | |
Position | Gets or sets the position within the current stream. (Overrides Stream.Position.) | |
ReadTimeout | Gets or sets a value, in miliseconds, that determines how long the stream will attempt to read before timing out. (Inherited from Stream.) | |
WriteTimeout | Gets or sets a value, in miliseconds, that determines how long the stream will attempt to write before timing out. (Inherited from Stream.) |
Top