Click or drag to resize
DataOutput Class
Inheritance Hierarchy
SystemObject
  [T:GemStone.GemFire.Cache.Generic.Internal.UMWrap<gemfire::DataOutput>]
    GemStone.GemFire.Cache.GenericDataOutput

Namespace: GemStone.GemFire.Cache.Generic
Assembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntax
public sealed class DataOutput : [T:GemStone.GemFire.Cache.Generic.Internal.UMWrap<gemfire::DataOutput>]

The DataOutput type exposes the following members.

Constructors
  NameDescription
Public methodDataOutput
Default constructor.
Top
Properties
  NameDescription
Public propertyBufferLength
Get the length of current data in the buffer.
Public propertyNativeIntPtr
Get the underlying native unmanaged pointer.
Top
Methods
  NameDescription
Public methodAdvanceCursor
Advance the buffer cursor by the given offset.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetBuffer
Get a copy of the current buffer.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodReset
Reset the cursor to the start of the buffer.
Public methodRewindCursor
Rewind the buffer cursor by the given offset.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodWriteArrayLen
Write length of the array to the DataOutput.
Public methodWriteArrayOfByteArrays
Write a array of sign byte array to the DataOutput.
Public methodWriteASCIIHuge
Write a string(only ASCII char) to DataOutput. Length should be more than 2^16 -1.
Public methodWriteBoolean
Write a boolean value to the DataOutput.
Public methodWriteBooleanArray
Write a bool array to the DataOutput.
Public methodWriteBytes(Byte)
Write an array of bytes to the DataOutput.
Public methodWriteBytes(Byte, Int32)
Write a given length of bytes to the DataOutput.
Public methodWriteBytesOnly(Byte)
Write an array of bytes without its length to the DataOutput.
Public methodWriteBytesOnly(Byte, UInt32)
Write a given length of bytes without its length to the DataOutput.
Public methodWriteBytesOnly(Byte, UInt32, UInt32)
Public methodWriteChar
Write a char value to the DataOutput.
Public methodWriteCharArray
Write a char array to the DataOutput.
Public methodWriteCollection
Write a collection to the DataOutput.
Public methodWriteDate
Write a date to the DataOutput.
Public methodWriteDictionary
Write a Dictionary to the DataOutput.
Public methodWriteDouble
Write a double precision real number to the DataOutput.
Public methodWriteDoubleArray
Write a double array to the DataOutput.
Public methodWriteFloat
Write a float to the DataOutput.
Public methodWriteFloatArray
Write a float array to the DataOutput.
Public methodWriteInt16
Write a 16-bit integer to the DataOutput.
Public methodWriteInt32
Write a 32-bit integer to the DataOutput.
Public methodWriteInt64
Write a 64-bit integer to the DataOutput.
Public methodWriteIntArray
Write a int array to the DataOutput.
Public methodWriteLongArray
Write a long array to the DataOutput.
Public methodWriteObject
Write an IGFSerializable object to the DataOutput.
Public methodWriteObjectArray
Public methodWriteSByte
Write a signed byte to the DataOutput.
Public methodWriteSBytes(SByte)
Write an array of signed bytes to the DataOutput.
Public methodWriteSBytes(SByte, Int32)
Write a given length of signed bytes to the DataOutput.
Public methodWriteSBytesOnly(SByte)
Write an array of signed bytes without its length to the DataOutput.
Public methodWriteSBytesOnly(SByte, UInt32)
Write a given length of signed bytes without its length to the DataOutput.
Public methodWriteShortArray
Write a short array to the DataOutput.
Public methodWriteUTF
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.
Public methodWriteUTFHuge
Write a string using java-modified UTF-8 encoding to DataOutput. Length should be more than 2^16 -1.
Top
See Also