Write Method (IPubSubBuffer)
- Last UpdatedApr 08, 2026
- 1 minute read
Writes a System.Byte to the buffer.
| Overload | Description |
|---|---|
| Write(Byte) | Writes a System.Byte to the buffer. |
| Write(SByte) | Writes a System.SByte to the buffer. |
| Write(Int16) | Writes a System.Int16 to the buffer. |
| Write(UInt16) | Writes a System.UInt16 to the buffer. |
| Write(Int32) | Writes a System.Int32 to the buffer. |
| Write(UInt32) | Writes a System.UInt32 to the buffer. |
| Write(Int64) | Writes a System.Int64 to the buffer. |
| Write(UInt64) | Writes a System.UInt64 to the buffer. |
| Write(Single) | Writes a System.Single to the buffer. |
| Write(Double) | Writes a System.Double to the buffer. |
| Write(String) | Writes a System.String to the buffer. |
| Write(String,Boolean) | Writes a System.String to the buffer depending on the boolean input. |
| Write(Char) | Writes a UNICODE System.Char to the buffer.
Note: The character will be transmitted as a one-character long Unicode string, and non-dotnet applications must be aware that they will be getting a string. Dotnet applications will have the translation from and to a string done automatically for them. |
| Write(Boolean) | Writes a System.Boolean to the buffer. |
| Write(Decimal) | Writes a System.Decimal to the buffer. |
| Write(Object) | Writes a System.Object to the buffer. |
| Write(Object[]) | Writes an System.Object array to the buffer. Only simple objects can be written to the buffer, not complex classes. |