Discuss this help topic in SecureBlackbox Forum

TElHTTPSWebDAVClient.PropPatch

TElHTTPSWebDAVClient     See also     


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


Sets or removes properties on the resource.

Declaration

[VB.NET]
    Function PropPatch(ByVal URL As String, ByVal SetProperties As TElWebDAVPropertyInfoList, ByVal RemoveProperties As TElWebDAVPropertyInfoList, ByVal IfHeader As String) As Integer

[Pascal]
    function PropPatch(const URL : string; SetProperties : TElWebDAVPropertyInfoList; RemoveProperties : TElWebDAVPropertyInfoList; const IfHeader : string = '') : integer;

[C++]
    int32_t PropPatch(const std::string &URL, TElWebDAVPropertyInfoList &SetProperties, TElWebDAVPropertyInfoList &RemoveProperties, const std::string &IfHeader);
    int32_t PropPatch(const std::string &URL, TElWebDAVPropertyInfoList *SetProperties, TElWebDAVPropertyInfoList *RemoveProperties, const std::string &IfHeader);

[PHP]
    integer PropPatch(string $URL, TElWebDAVPropertyInfoList $SetProperties, TElWebDAVPropertyInfoList $RemoveProperties, string $IfHeader)

Parameters

  • URL - URL of the resource.
  • SetProperties - properties to be set.
  • RemoveProperties - properties to be deleted.
  • IfHeader - specifies the If header of the request.

Return value

    On success, returns server status code, otherwise returns -1.

Description

    Use this method to send the PROPPATCH request to the server.

See also:     PropFind    

Discuss this help topic in SecureBlackbox Forum