ActiViz .NET
5.8.0
|
vtkBase64OutputStream - Writes base64-encoded output to a stream. More...
Public Member Functions | |
vtkBase64OutputStream (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
vtkBase64OutputStream () | |
Undocumented Block. | |
override 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 vtkBase64OutputStream | NewInstance () |
Undocumented Block. | |
override 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. | |
override int | Write (IntPtr data, uint length) |
Write output data of the given length. | |
Static Public Member Functions | |
static new vtkBase64OutputStream | New () |
Undocumented Block. | |
static new int | IsTypeOf (string type) |
Undocumented Block. | |
static new vtkBase64OutputStream | SafeDownCast (vtkObjectBase o) |
Undocumented Block. | |
Public Attributes | |
new const string | MRFullTypeName = "Kitware.VTK.vtkBase64OutputStream" |
Automatically generated type registration mechanics. | |
Static Public Attributes | |
static new readonly string | MRClassNameKey = "21vtkBase64OutputStream" |
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 | vtkBase64OutputStream_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal int | vtkBase64OutputStream_EndWriting_01 (HandleRef pThis) |
static internal int | vtkBase64OutputStream_IsA_02 (HandleRef pThis, string type) |
static internal int | vtkBase64OutputStream_IsTypeOf_03 (string type) |
static internal IntPtr | vtkBase64OutputStream_NewInstance_05 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkBase64OutputStream_SafeDownCast_06 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal int | vtkBase64OutputStream_StartWriting_07 (HandleRef pThis) |
static internal int | vtkBase64OutputStream_Write_08 (HandleRef pThis, IntPtr data, uint length) |
Static Private Member Functions | |
static | vtkBase64OutputStream () |
Automatically generated type registration mechanics. |
vtkBase64OutputStream - Writes base64-encoded output to a stream.
Description vtkBase64OutputStream implements base64 encoding with the vtkOutputStream interface.
static Kitware.VTK.vtkBase64OutputStream.vtkBase64OutputStream | ( | ) | [static, private] |
Automatically generated type registration mechanics.
Kitware.VTK.vtkBase64OutputStream.vtkBase64OutputStream | ( | IntPtr | rawCppThis, |
bool | callDisposalMethod, | ||
bool | strong | ||
) |
Automatically generated constructor - called from generated code. DO NOT call directly.
Undocumented Block.
override void Kitware.VTK.vtkBase64OutputStream.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.vtkOutputStream.
override int Kitware.VTK.vtkBase64OutputStream.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 from Kitware.VTK.vtkOutputStream.
override int Kitware.VTK.vtkBase64OutputStream.IsA | ( | string | type | ) | [virtual] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkOutputStream.
static new int Kitware.VTK.vtkBase64OutputStream.IsTypeOf | ( | string | type | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkOutputStream.
static new vtkBase64OutputStream Kitware.VTK.vtkBase64OutputStream.New | ( | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkOutputStream.
Undocumented Block.
Reimplemented from Kitware.VTK.vtkOutputStream.
static new vtkBase64OutputStream Kitware.VTK.vtkBase64OutputStream.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkOutputStream.
override int Kitware.VTK.vtkBase64OutputStream.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 from Kitware.VTK.vtkOutputStream.
static internal int Kitware.VTK.vtkBase64OutputStream.vtkBase64OutputStream_EndWriting_01 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkBase64OutputStream.vtkBase64OutputStream_IsA_02 | ( | HandleRef | pThis, |
string | type | ||
) | [private] |
static internal int Kitware.VTK.vtkBase64OutputStream.vtkBase64OutputStream_IsTypeOf_03 | ( | string | type | ) | [private] |
static internal IntPtr Kitware.VTK.vtkBase64OutputStream.vtkBase64OutputStream_New | ( | ref uint | mteStatus, |
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkBase64OutputStream.vtkBase64OutputStream_NewInstance_05 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkBase64OutputStream.vtkBase64OutputStream_SafeDownCast_06 | ( | HandleRef | o, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal int Kitware.VTK.vtkBase64OutputStream.vtkBase64OutputStream_StartWriting_07 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkBase64OutputStream.vtkBase64OutputStream_Write_08 | ( | HandleRef | pThis, |
IntPtr | data, | ||
uint | length | ||
) | [private] |
override int Kitware.VTK.vtkBase64OutputStream.Write | ( | IntPtr | data, |
uint | length | ||
) | [virtual] |
Write output data of the given length.
Reimplemented from Kitware.VTK.vtkOutputStream.
new readonly string Kitware.VTK.vtkBase64OutputStream.MRClassNameKey = "21vtkBase64OutputStream" [static] |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkOutputStream.
new const string Kitware.VTK.vtkBase64OutputStream.MRFullTypeName = "Kitware.VTK.vtkBase64OutputStream" |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkOutputStream.