Method | Description | |
---|---|---|
EnterArray ( ) : void |
Enters an array value
|
|
EnterChoice ( byte choiceIndex ) : void |
Enters a choice value
|
|
EnterOption ( bool hasValue ) : void |
Optionally enters value
|
|
EnterSequence ( ) : void |
Enters a sequence value
|
|
LeaveArray ( ) : void |
Leaves an array value
|
|
LeaveChoice ( ) : void |
Leaves a choice value
|
|
LeaveSequence ( ) : void |
Leaves a sequence value
|
|
PutBitString24 ( |
Puts a value into the sink
|
|
PutBitString56 ( |
Puts a value into the sink
|
|
PutBitString8 ( |
Puts a value into the sink
|
|
PutBoolean ( bool value ) : void |
Puts a value into the sink
|
|
PutCharString ( string value ) : void |
Puts a value into the sink
|
|
PutDate ( Date value ) : void |
Puts a value into the sink
|
|
PutEnumerated ( |
Puts a value into the sink
|
|
PutFloat32 ( float value ) : void |
Puts a value into the sink
|
|
PutFloat64 ( double value ) : void |
Puts a value into the sink
|
|
PutGeneric ( GenericValue value ) : void |
Puts a value into the sink
|
|
PutNull ( System.Null value ) : void |
Puts a value into the sink
|
|
PutObjectId ( ObjectId value ) : void |
Puts a value into the sink
|
|
PutOctetString ( byte value ) : void |
Puts a value into the sink
|
|
PutSigned16 ( short value ) : void |
Puts a value into the sink
|
|
PutSigned32 ( int value ) : void |
Puts a value into the sink
|
|
PutSigned64 ( long value ) : void |
Puts a value into the sink
|
|
PutSigned8 ( sbyte value ) : void |
Puts a value into the sink
|
|
PutTime ( |
Puts a value into the sink
|
|
PutUnsigned16 ( ushort value ) : void |
Puts a value into the sink
|
|
PutUnsigned32 ( uint value ) : void |
Puts a value into the sink
|
|
PutUnsigned64 ( ulong value ) : void |
Puts a value into the sink
|
|
PutUnsigned8 ( byte value ) : void |
Puts a value into the sink
|
|
TagWriterSink ( |
Constructs a new TagWriterSink
|
Method | Description | |
---|---|---|
_moveNext ( ) : void |
Moves the current state to the next value to read
|
|
_require ( StreamOp op ) : void |
Requires that the next operation is expected
|
public EnterChoice ( byte choiceIndex ) : void | ||
choiceIndex | byte | The active choice |
return | void |
public EnterOption ( bool hasValue ) : void | ||
hasValue | bool | True if there is a value, false otherwise |
return | void |
public PutBitString24 ( |
||
value | The value to put | |
return | void |
public PutBitString56 ( |
||
value | The value to put | |
return | void |
public PutBitString8 ( |
||
value | The value to put | |
return | void |
public PutBoolean ( bool value ) : void | ||
value | bool | The value to put |
return | void |
public PutCharString ( string value ) : void | ||
value | string | The value to put |
return | void |
public PutDate ( Date value ) : void | ||
value | Date | The value to put |
return | void |
public PutEnumerated ( |
||
value | The value to put | |
return | void |
public PutFloat32 ( float value ) : void | ||
value | float | The value to put |
return | void |
public PutFloat64 ( double value ) : void | ||
value | double | The value to put |
return | void |
public PutGeneric ( GenericValue value ) : void | ||
value | GenericValue | The value to put |
return | void |
public PutNull ( System.Null value ) : void | ||
value | System.Null | The value to put |
return | void |
public PutObjectId ( ObjectId value ) : void | ||
value | ObjectId | The value to put |
return | void |
public PutOctetString ( byte value ) : void | ||
value | byte | The value to put |
return | void |
public PutSigned16 ( short value ) : void | ||
value | short | The value to put |
return | void |
public PutSigned32 ( int value ) : void | ||
value | int | The value to put |
return | void |
public PutSigned64 ( long value ) : void | ||
value | long | The value to put |
return | void |
public PutSigned8 ( sbyte value ) : void | ||
value | sbyte | The value to put |
return | void |
public PutTime ( |
||
value | The value to put | |
return | void |
public PutUnsigned16 ( ushort value ) : void | ||
value | ushort | The value to put |
return | void |
public PutUnsigned32 ( uint value ) : void | ||
value | uint | The value to put |
return | void |
public PutUnsigned64 ( ulong value ) : void | ||
value | ulong | The value to put |
return | void |
public PutUnsigned8 ( byte value ) : void | ||
value | byte | The value to put |
return | void |
public TagWriterSink ( |
||
writer | The tag writer instance to write to | |
schema | ISchema | The schema for the types to write |
return | System |