ActiViz .NET  5.8.0
Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Protected Member Functions | Private Member Functions | Static Private Member Functions
Kitware.VTK.vtkOutputStream Class Reference

vtkOutputStream - Wraps a binary output stream with a VTK interface. More...

Inheritance diagram for Kitware.VTK.vtkOutputStream:
[legend]
Collaboration diagram for Kitware.VTK.vtkOutputStream:
[legend]

List of all members.

Public Member Functions

 vtkOutputStream (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkOutputStream ()
 Undocumented Block.
virtual int EndWriting ()
 Called after all desired calls to Write have been made. After this call, the caller is free to change the position of the stream. Additional writes should not be done until after another call to StartWriting.
override int IsA (string type)
 Undocumented Block.
new vtkOutputStream NewInstance ()
 Undocumented Block.
virtual int StartWriting ()
 Called after the stream position has been set by the caller, but before any Write calls. The stream position should not be adjusted by the caller until after an EndWriting call.
virtual int Write (IntPtr data, uint length)
 Write output data of the given length.
int Write (string data, uint length)
 Write output data of the given length.

Static Public Member Functions

static new vtkOutputStream New ()
 Undocumented Block.
static new int IsTypeOf (string type)
 Undocumented Block.
static new vtkOutputStream SafeDownCast (vtkObjectBase o)
 Undocumented Block.

Public Attributes

new const string MRFullTypeName = "Kitware.VTK.vtkOutputStream"
 Automatically generated type registration mechanics.

Static Public Attributes

static new readonly string MRClassNameKey = "15vtkOutputStream"
 Automatically generated type registration mechanics.

Protected Member Functions

override void Dispose (bool disposing)
 Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Private Member Functions

static internal IntPtr vtkOutputStream_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal int vtkOutputStream_EndWriting_01 (HandleRef pThis)
static internal int vtkOutputStream_IsA_02 (HandleRef pThis, string type)
static internal int vtkOutputStream_IsTypeOf_03 (string type)
static internal IntPtr vtkOutputStream_NewInstance_05 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkOutputStream_SafeDownCast_06 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal int vtkOutputStream_StartWriting_07 (HandleRef pThis)
static internal int vtkOutputStream_Write_08 (HandleRef pThis, IntPtr data, uint length)
static internal int vtkOutputStream_Write_09 (HandleRef pThis, string data, uint length)

Static Private Member Functions

static vtkOutputStream ()
 Automatically generated type registration mechanics.

Detailed Description

vtkOutputStream - Wraps a binary output stream with a VTK interface.

Description vtkOutputStream provides a VTK-style interface wrapping around a standard output stream. The access methods are virtual so that subclasses can transparently provide encoding of the output. Data lengths for Write calls refer to the length of the data in memory. The actual length in the stream may differ for subclasses that implement an encoding scheme.


Constructor & Destructor Documentation

static Kitware.VTK.vtkOutputStream.vtkOutputStream ( ) [static, private]

Automatically generated type registration mechanics.

Kitware.VTK.vtkOutputStream.vtkOutputStream ( IntPtr  rawCppThis,
bool  callDisposalMethod,
bool  strong 
)

Automatically generated constructor - called from generated code. DO NOT call directly.

Undocumented Block.


Member Function Documentation

override void Kitware.VTK.vtkOutputStream.Dispose ( bool  disposing) [protected]

Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Reimplemented from Kitware.VTK.vtkObject.

Reimplemented in Kitware.VTK.vtkBase64OutputStream.

virtual int Kitware.VTK.vtkOutputStream.EndWriting ( ) [virtual]

Called after all desired calls to Write have been made. After this call, the caller is free to change the position of the stream. Additional writes should not be done until after another call to StartWriting.

Reimplemented in Kitware.VTK.vtkBase64OutputStream.

override int Kitware.VTK.vtkOutputStream.IsA ( string  type) [virtual]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Reimplemented in Kitware.VTK.vtkBase64OutputStream.

static new int Kitware.VTK.vtkOutputStream.IsTypeOf ( string  type) [static]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Reimplemented in Kitware.VTK.vtkBase64OutputStream.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Reimplemented in Kitware.VTK.vtkBase64OutputStream.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Reimplemented in Kitware.VTK.vtkBase64OutputStream.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Reimplemented in Kitware.VTK.vtkBase64OutputStream.

Here is the call graph for this function:

virtual int Kitware.VTK.vtkOutputStream.StartWriting ( ) [virtual]

Called after the stream position has been set by the caller, but before any Write calls. The stream position should not be adjusted by the caller until after an EndWriting call.

Reimplemented in Kitware.VTK.vtkBase64OutputStream.

static internal int Kitware.VTK.vtkOutputStream.vtkOutputStream_EndWriting_01 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkOutputStream.vtkOutputStream_IsA_02 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkOutputStream.vtkOutputStream_IsTypeOf_03 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkOutputStream.vtkOutputStream_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkOutputStream.vtkOutputStream_NewInstance_05 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkOutputStream.vtkOutputStream_SafeDownCast_06 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal int Kitware.VTK.vtkOutputStream.vtkOutputStream_StartWriting_07 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkOutputStream.vtkOutputStream_Write_08 ( HandleRef  pThis,
IntPtr  data,
uint  length 
) [private]
static internal int Kitware.VTK.vtkOutputStream.vtkOutputStream_Write_09 ( HandleRef  pThis,
string  data,
uint  length 
) [private]
virtual int Kitware.VTK.vtkOutputStream.Write ( IntPtr  data,
uint  length 
) [virtual]

Write output data of the given length.

Reimplemented in Kitware.VTK.vtkBase64OutputStream.

int Kitware.VTK.vtkOutputStream.Write ( string  data,
uint  length 
)

Write output data of the given length.


Member Data Documentation

new readonly string Kitware.VTK.vtkOutputStream.MRClassNameKey = "15vtkOutputStream" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkObject.

Reimplemented in Kitware.VTK.vtkBase64OutputStream.

new const string Kitware.VTK.vtkOutputStream.MRFullTypeName = "Kitware.VTK.vtkOutputStream"

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkObject.

Reimplemented in Kitware.VTK.vtkBase64OutputStream.


The documentation for this class was generated from the following file: