Q&A

  • WinShose 의 IdTCPConnection의 WriteBuffer 사용방법은
WinShose 의 IdTCPConnection의 WriteBuffer 사용법에 대해서



알고 싶습니다.



많은 지도 부탁합니다.

1  COMMENTS
  • Profile
    이경문 2000.09.06 13:12
    이경문 wrote:

    > WriteBuffer(var ABuffer; AByteCount: Integer); 말 그대로 버퍼를 ByteCount만큼 송신합니다.

    > Write(AOut: String); 스트링을 송신합니다. 길이는 AOut으로 설정됩니다.

    > WriteStream(AStream: TStream); 스트림을 송신합니다.

    > WriteInteger(AValue: Integer); 하나의 정수를 송신합니다.

    >

    > 주의사항 : WriteStream에서는 Stream의 Size만큼 송신하게 됩니다. 하지만 ReadStream에서는

    > 얼마만큼 받아야 할지 모릅니다. 따라서 다음과 같이 해 주어야 합니다.

    >

    > 송신측:

    > WriteInteger(SendStream.Size);

    > WriteStream(SendStream);

    >

    > 수신측:

    > Size := ReadInteger;

    > ReadStream(RecvStream, Size);

    >

    >