Exchange5250DS Delegate

Definition

Namespace: ASNA.DataGate.Providers
Assembly: ASNA.QSys.DataGate.Client.dll

Represents a method that exchanges 5250 data streams.

public delegate void Exchange5250DS(
    int iBegin,
    ref byte[] aInDs,
    int InDsLength,
    out byte[] aOutDs,
    out int OutDsLength,
    out byte TelnetFlags)

Parameters

Type Parameter name Description
Int32 iBegin The starting point for the exchange.
Byte[] aInDs The input data stream.
Int32 InDsLength The length of the input data stream.
Byte[] aOutDs The output data stream.
Int32 OutDsLength The length of the output data stream.
Byte TelnetFlags The telnet flags for the exchange.

Remarks

Use this delegate to encapsulate the exchange of 5250 data streams, including both inbound and outbound buffers and associated telnet flags.

See Also