Discuss this help topic in SecureBlackbox Forum

TElWebDAVClient.CreateAddressBook

TElWebDAVClient     See also     


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


Creates a new address book.

Declaration

[C#]
    void CreateAddressBook(string URL, string DisplayName, string Description, string Lang, TElWebDAVLockList Locks);
    void CreateAddressBook(TElWebDAVStorageObject Parent, string Name, string DisplayName, string Description, string Lang);
    void CreateAddressBook(string URL, string DisplayName, string Description, TElWebDAVLockList Locks);
    void CreateAddressBook(TElWebDAVStorageObject Parent, string Name, string DisplayName, string Description);

[VB.NET]
    Sub CreateAddressBook(ByVal URL As String, ByVal DisplayName As String, ByVal Description As String, ByVal Lang As String, ByVal Locks As TElWebDAVLockList)
    Sub CreateAddressBook(ByVal Parent As TElWebDAVStorageObject, ByVal Name As String, ByVal DisplayName As String, ByVal Description As String, ByVal Lang As String)
    Sub CreateAddressBook(ByVal URL As String, ByVal DisplayName As String, ByVal Description As String, ByVal Locks As TElWebDAVLockList)
    Sub CreateAddressBook(ByVal Parent As TElWebDAVStorageObject, ByVal Name As String, ByVal DisplayName As String, ByVal Description As String)

[Pascal]
    procedure CreateAddressBook(const URL, DisplayName, Description, Lang : string; Locks : TElWebDAVLockList = nil);
    procedure CreateAddressBook(Parent : TElWebDAVStorageObject; const Name, DisplayName, Description, Lang : string);
    procedure CreateAddressBook(const URL, DisplayName, Description : string; Locks : TElWebDAVLockList = nil);
    procedure CreateAddressBook(Parent : TElWebDAVStorageObject; const Name, DisplayName, Description : string);

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

[PHP]
    void CreateAddressBook(string $URL, string $DisplayName, string $Description, string $Lang, TElWebDAVLockList $Locks)
    void CreateAddressBook(TElWebDAVStorageObject $Parent, string $Name, string $DisplayName, string $Description, string $Lang)
    void CreateAddressBook(string $URL, string $DisplayName, string $Description, TElWebDAVLockList $Locks)
    void CreateAddressBook(TElWebDAVStorageObject $Parent, string $Name, string $DisplayName, string $Description)

[Java]
    not available

Parameters

  • URL - the URL of the new address book.
  • DisplayName - display name of the new address book.
  • Description - the description of the new address book.
  • Lang - this attribute can be used to add a language tag to the description.
  • Locks - the locks to be added to the new resource.
  • Parent - specifies the parent collection to the new address book.
  • Name - the name of the new address book.

Description

    Use this method to create a new address book.

See also:     GetAddressBookInfo    

Discuss this help topic in SecureBlackbox Forum