![]() |
IOLink C# 1.16.1
|
Public Member Functions | |
| StreamAccess (global::System.IntPtr cPtr, bool cMemoryOwn) | |
| virtual StreamAccessCapabilitySet | GetCapabilities () |
| |
| bool | Support (StreamAccessCapabilitySet flags) |
| Checks if the StreamAccess supports the given capabilities. | |
| virtual bool | GetGood () |
| virtual bool | GetEof () |
| virtual bool | GetFail () |
| string | ToString () |
| Return a string representation. | |
| virtual unsafe uint | Read (uint size, byte[] dst) |
| virtual byte | Peek () |
| virtual unsafe uint | Write (uint size, byte[] src) |
| virtual void | Flush () |
| virtual uint | Tell () |
| virtual void | Seek (long offset, SeekOrigin origin) |
| delegate global::System.IntPtr | SwigDelegateStreamAccess_0 () |
| delegate string | SwigDelegateStreamAccess_1 () |
| delegate global::System.IntPtr | SwigDelegateStreamAccess_2 () |
| delegate bool | SwigDelegateStreamAccess_3 () |
| delegate bool | SwigDelegateStreamAccess_4 () |
| delegate bool | SwigDelegateStreamAccess_5 () |
| delegate uint | SwigDelegateStreamAccess_6 (uint size, global::System.IntPtr dst) |
| delegate byte | SwigDelegateStreamAccess_7 () |
| delegate uint | SwigDelegateStreamAccess_8 (uint size, global::System.IntPtr src) |
| delegate void | SwigDelegateStreamAccess_9 () |
| delegate uint | SwigDelegateStreamAccess_10 () |
| delegate void | SwigDelegateStreamAccess_11 (long offset, int origin) |
Public Member Functions inherited from IOLink.DataAccess | |
| DataAccess (global::System.IntPtr cPtr, bool cMemoryOwn) | |
| void | Dispose () |
| virtual DataStorage | GetStorage () |
| Get the storage to which this data accessor belong. | |
| virtual string | GetResourceId () |
| Return the resource identifier of this data accessor. | |
Static Public Member Functions | |
| static global::System.Runtime.InteropServices.HandleRef | getCPtr (StreamAccess obj) |
Static Public Member Functions inherited from IOLink.DataAccess | |
| static global::System.Runtime.InteropServices.HandleRef | getCPtr (DataAccess obj) |
Protected Member Functions | |
| override void | Dispose (bool disposing) |
Properties | |
| StreamAccessCapabilitySet | Capabilities [get] |
The Capabilities on the StreamAccess | |
| bool | IsGood [get] |
| Checks if the stream is in a good state. | |
| bool | IsEof [get] |
| Checks if the stream at the end of file. | |
| bool | IsFail [get] |
| Checks if the stream is in a fail state. | |
Properties inherited from IOLink.DataAccess | |
| DataStorage | Storage [get] |
The Storage associated with this DataAccess | |
| string | ResourceId [get] |
The identifier of this DataAccess in its DataStorage | |
Mother interface for all stream-like data accessors. This interface capabilities are indicated by the StreamAccessCapabilitySet returned by the method StreamAccess::capabilities. Each capability enables the use of a specific set of methods. When one of those methods is called, if its corresponding capability is not supported, a NotImplemented exception will be thrown.
|
inlineprotectedvirtual |
Reimplemented from IOLink.DataAccess.
|
inlinevirtual |
Assure that all data is written to the endpoint. Available when the StreamAccess has the WRITE capability.
Reimplemented in IOLink.NetStreamAccess.
|
inlinevirtual |
Reimplemented in IOLink.NetStreamAccess.
|
inlinevirtual |
Checks if the cursor is at the end of the stream for reading For writing, this status is not relevant.
Reimplemented in IOLink.NetStreamAccess.
|
inlinevirtual |
Checks if the stream is currently valid for reading (only) Default implementation returns true if nor 'end of file' or 'fail' status are raised
Reimplemented in IOLink.NetStreamAccess.
|
inlinevirtual |
Return the current byte without moving the cursor. Available when the StreamAccess has the READ capability.
| Error | if cursor is at EOF. |
Reimplemented in IOLink.NetStreamAccess.
|
inlinevirtual |
Read data from cursor current position into destination buffer. Cursor position is incremented by the actually read bytes count. Available when the StreamAccess has the READ capability.
| size | Size in byte of the area to read |
| dst | Destination buffer. This buffer should have a size of "size" |
Reimplemented in IOLink.NetStreamAccess.
|
inlinevirtual |
Move the cursor to the desired position. Available when the StreamAccess has the SEEK capability. Cursor position must be set as following: new position = current position + offset If new computed position is less than 0, previous current position is kept.
| offset | Offset used to move the cursor according to the origin. |
| origin | The origin from which to move the cursor. Can be the start of the stream, the current position of the cursor, or the end of the stream. Positive offsets always make the cursor move forward in the stream, whatever the origin. Negative offsets always make the cursor move backward. |
| Error | if trying to set cursor before BEGIN position (negative value) |
Reimplemented in IOLink.NetStreamAccess.
|
inlinevirtual |
Returns the current position of the cursor. Available when the StreamAccess has the SEEK capability.
Reimplemented in IOLink.NetStreamAccess.
|
inlinevirtual |
Write content of src buffer into StreamAccess. Stream cursor is incremented by actually written bytes count. Available when the StreamAccess has the WRITE capability.
| size | Size in byte of given buffer to write |
| src | Source buffer. This buffer should have a size of "size" |
Reimplemented in IOLink.NetStreamAccess.