Discuss this help topic in SecureBlackbox Forum

TElWebDAVServer.CreateCalendar

TElWebDAVServer     See also     


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


Sends a MKCALENDAR request to the server.

Declaration

[C#]
    void CreateCalendar(string URL, string Description, TElWebDAVPrincipal Owner);

[VB.NET]
    Sub CreateCalendar(ByVal URL As String, ByVal Description As String, ByVal Owner As TElWebDAVPrincipal)

[Pascal]
    procedure CreateCalendar(const URL, Description : string; Owner : TElWebDAVPrincipal);

[C++]
    void CreateCalendar(const std::string &URL, const std::string &Description, SBWebDAVServer_TElWebDAVPrincipal &Owner);
    void CreateCalendar(const std::string &URL, const std::string &Description, SBWebDAVServer_TElWebDAVPrincipal *Owner);

[PHP]
    void CreateCalendar(string $URL, string $Description, SBWebDAVServer_TElWebDAVPrincipal $Owner)

[Java]
    void createCalendar(String URL, String Description, TElWebDAVPrincipal Owner);

Parameters

  • URL - the URL of the new resource.
  • Description - human-readable displayname of the new calendar.
  • Owner - the principal who owns the new collection.

Description

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

See also:     CreateAddressBook     CreateCollection    

Discuss this help topic in SecureBlackbox Forum