Discuss this help topic in SecureBlackbox Forum

TElWebDAVCustomLockList.LoadFromStream

TElWebDAVCustomLockList     See also     


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


Loads locks from the stream.

Declaration

[C#]
    void LoadFromStream(System.IO.Stream Stream, bool Clear);

[VB.NET]
    Sub LoadFromStream(ByVal Stream As System.IO.Stream, ByVal Clear As Boolean)

[Pascal]
    procedure LoadFromStream(Stream : TStream; Clear : boolean = false); virtual;

[C++]
    void LoadFromStream(TStream &Stream, bool Clear);
    void LoadFromStream(TStream *Stream, bool Clear);

[PHP]
    void LoadFromStream(TStream $Stream, bool $Clear)

[Java]
    void loadFromStream(TElStream Stream, boolean Clear);

Parameters

  • Stream - the stream containing the locks to be loaded.
  • Clear - specifies if the stream should be cleared after loading.

Description

    Use this method to load lock data from the stream.

See also:     SaveToStream    

Discuss this help topic in SecureBlackbox Forum