 | CBFIReadString Method (Int32, String, Int32) |
Note: This API is now obsolete.
Reads string data from current position in BF
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2025.1.0.25
Syntax[ObsoleteAttribute("Deprecated since unknown, ")]
public void IReadString(
int type,
ref string data,
int size
)
[ObsoleteAttribute("Deprecated since unknown, ")]
public void IReadString(
int type,
ref string data,
int size
)
<ObsoleteAttribute("Deprecated since unknown, ")>
Public Sub IReadString (
type As Integer,
ByRef data As String,
size As Integer
)
<ObsoleteAttribute("Deprecated since unknown, ")>
Public Sub IReadString (
type As Integer,
ByRef data As String,
size As Integer
)
public:
[ObsoleteAttribute(L"Deprecated since unknown, ")]
void IReadString(
int type,
String^% data,
int size
)
public:
[ObsoleteAttribute(L"Deprecated since unknown, ")]
void IReadString(
int type,
String^% data,
int size
)
[<ObsoleteAttribute("Deprecated since unknown, ")>]
member IReadString :
type : int *
data : string byref *
size : int -> unit
[<ObsoleteAttribute("Deprecated since unknown, ")>]
member IReadString :
type : int *
data : string byref *
size : int -> unit
Parameters
- type
- Type: SystemInt32
<define>GS_TYPES</define> and <define>BF_BYTEORDER</define> - data
- Type: SystemString
Data - size
- Type: SystemInt32
Length of string to read, NULL will be added so the string length must be at least int+1.
Remarks
If the data source may be in byte order different from that
required by the reader, you can add the source byte-order
to the BF elelment type. The byte order will be swapped
if required. For example, to write out a real number 3.5
with Most-Significant_Byte first (Mortorola) convention:
WriteReal_BF(hBF,<define>BF_BYTEORDER_MSB</define>+<define>GS_REAL</define>,3.5).
If a byte order is not specified, the source is assumed to be
in the native byte order of the reading/writing computer.
See Also