Discuss this help topic in SecureBlackbox Forum

TElWebDAVClient.CreateCollection

TElWebDAVClient     See also     


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


Creates a new collection on the server.

Declaration

[C#]
    void CreateCollection(string URL, TElWebDAVLockList Locks);
    void CreateCollection(TElWebDAVStorageObject Parent, string Name);

[VB.NET]
    Sub CreateCollection(ByVal URL As String, ByVal Locks As TElWebDAVLockList)
    Sub CreateCollection(ByVal Parent As TElWebDAVStorageObject, ByVal Name As String)

[Pascal]
    procedure CreateCollection(const URL : string; Locks : TElWebDAVLockList = nil);
    procedure CreateCollection(Parent : TElWebDAVStorageObject; const Name : string);

[C++]
    void CreateCollection(const std::string &URL, TElWebDAVLockList &Locks);
    void CreateCollection(const std::string &URL, TElWebDAVLockList *Locks);
    void CreateCollection(TElWebDAVStorageObject &Parent, const std::string &Name);
    void CreateCollection(TElWebDAVStorageObject *Parent, const std::string &Name);

[PHP]
    void CreateCollection(string $URL, TElWebDAVLockList $Locks)
    void CreateCollection(TElWebDAVStorageObject $Parent, string $Name)

[Java]
    void createCollection(String URL, TElWebDAVLockList Locks);
    void createCollection(TElWebDAVStorageObject Parent, String Name);

Parameters

  • URL - URL of the new collection.
  • Parent - parent object.
  • Name - name of the new collection.
  • Locks - locks to be put on the new collection.

Description

    Use this method to create a new collection on the server.

See also:     DeleteObject    

Discuss this help topic in SecureBlackbox Forum