SecureBlackbox 2020 Delphi Edition

Questions / Feedback?

WriteFile Event

This event is fired when a file write request is received.

Syntax

type TWriteFileEvent = procedure (
  Sender: TObject;
  ConnectionID: Int64;
  const Handle: String;
  Offset: Integer;
  var OperationStatus: Integer
) of Object;

property OnWriteFile: TWriteFileEvent read FOnWriteFile write FOnWriteFile;

Remarks

This event is fired when a request to write a data block to a file is received from the client. The ConnectionID parameter specifies the session the request originates from. The Handle parameter references the opened file where the block should be written to. Offset references the position in the file where the block of data should be written.

Use GetClientBuffer method to obtain the piece of data that should be written to the file.

Set OperationStatus to one of the below values according to the outcome of the request processing:

ostOk1
ostNoSuchFile2
ostAccessDenied3
ostWriteProtect4
ostUnsupported5
ostInvalidParameter6
ostEOF7

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 Delphi Edition - Version 20.0 [Build 8166]