Discuss this help topic in SecureBlackbox Forum

TElOneDriveFile.Write

TElOneDriveFile     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Writes file content to the storage.

Declaration

[C#]
    void Write(System.IO.Stream Source);
    void Write(System.IO.Stream Source, TElCustomDataStorageSecurityHandler Handler);

[VB.NET]
    Sub Write(ByVal Source As System.IO.Stream)
    Sub Write(ByVal Source As System.IO.Stream, ByVal Handler As TElCustomDataStorageSecurityHandler)

[Pascal]
    procedure Write(Source: TStream);
    procedure Write(Source: TStream; Handler: TElCustomDataStorageSecurityHandler);

[C++]
    void Write(TStream &Source);
    void Write(TStream *Source);
    void Write(TStream &Source, TElCustomDataStorageSecurityHandler &Handler);
    void Write(TStream *Source, TElCustomDataStorageSecurityHandler *Handler);

[PHP]
    void Write(TStream $Source)
    void Write(TStream $Source, TElCustomDataStorageSecurityHandler $Handler)

[Java]
    void write(TElStream Source);
    void write(TElStream Source, TElCustomDataStorageSecurityHandler Handler);

Parameters

  • Source - stream with data which should be written to the storage.
  • Handler - the security handler used to perform the operation.

Description

    Use this method to upload the file content to the storage.

See also:     Read    

Discuss this help topic in SecureBlackbox Forum