Syntax
| C# |
|---|
public sealed class DataOutput |
| Visual Basic (Declaration) |
|---|
Public NotInheritable Class DataOutput |
| Visual C++ |
|---|
public ref class DataOutput sealed |
The type exposes the following members.
Public Constructors
| Name | Description | |
|---|---|---|
| DataOutputDataOutputNew |
Default constructor.
|
Public Methods
| Name | Description | |
|---|---|---|
| AdvanceCursor |
Advance the buffer cursor by the given offset.
| |
| Equals | (Inherited from Object.) | |
| GetBuffer |
Get a copy of the current buffer.
| |
| GetHashCode | Serves as a hash function for a particular type. GetHashCode()() is suitable for use in hashing algorithms and data structures like a hash table. (Inherited from Object.) | |
| GetType | Gets the Type of the current instance. (Inherited from Object.) | |
| Reset |
Reset the cursor to the start of the buffer.
| |
| RewindCursor |
Rewind the buffer cursor by the given offset.
| |
| ToString | (Inherited from Object.) | |
| WriteBoolean |
Write a boolean value to the DataOutput.
| |
| WriteByte |
Write a byte to the DataOutput.
| |
| WriteBytes | Overloaded. | |
| WriteBytesOnly | Overloaded. | |
| WriteDouble |
Write a double precision real number to the DataOutput.
| |
| WriteFloat |
Write a float to the DataOutput.
| |
| WriteInt16 |
Write a 16-bit integer to the DataOutput.
| |
| WriteInt32 |
Write a 32-bit integer to the DataOutput.
| |
| WriteInt64 |
Write a 64-bit integer to the DataOutput.
| |
| WriteObject | Overloaded. | |
| WriteSByte |
Write a signed byte to the DataOutput.
| |
| WriteSBytes | Overloaded. | |
| WriteSBytesOnly | Overloaded. | |
| WriteUInt16 |
Write an unsigned short integer (Int16) to the DataOutput.
| |
| WriteUInt32 |
Write an unsigned 32-bit integer to the DataOutput.
| |
| WriteUInt64 |
Write an unsigned 64-bit integer to the DataOutput.
| |
| WriteUTF |
Write a string using java-modified UTF-8 encoding to DataOutput.
The maximum length supported is 2^16-1 beyond which the string
shall be truncated.
| |
| WriteUTFHuge |
Write a string using java-modified UTF-8 encoding to DataOutput.
|
Protected Methods
| Name | Description | |
|---|---|---|
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
Public Properties
| Name | Description | |
|---|---|---|
| BufferLength |
Get the length of current data in the buffer.
| |
| NativeIntPtr |
Get the underlying native unmanaged pointer.
|
See Also
GemStone.GemFire.Cache Namespace