Discuss this help topic in SecureBlackbox Forum

TElWebDAVClient.RemoveProperty

TElWebDAVClient     See also     


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


Deletes a property on the server.

Declaration

[C#]
    void RemoveProperty(string URL, TElWebDAVPropertyInfo PropInfo, TElWebDAVLockList Locks);
    void RemoveProperty(TElWebDAVStorageObject Obj, TElWebDAVPropertyInfo PropInfo);

[VB.NET]
    Sub RemoveProperty(ByVal URL As String, ByVal PropInfo As TElWebDAVPropertyInfo, ByVal Locks As TElWebDAVLockList)
    Sub RemoveProperty(ByVal Obj As TElWebDAVStorageObject, ByVal PropInfo As TElWebDAVPropertyInfo)

[Pascal]
    procedure RemoveProperty(const URL : string; PropInfo : TElWebDAVPropertyInfo; Locks : TElWebDAVLockList = nil);
    procedure RemoveProperty(Obj : TElWebDAVStorageObject; PropInfo : TElWebDAVPropertyInfo);

[C++]
    void RemoveProperty(const std::string &URL, TElWebDAVPropertyInfo &PropInfo, TElWebDAVLockList &Locks);
    void RemoveProperty(const std::string &URL, TElWebDAVPropertyInfo *PropInfo, TElWebDAVLockList *Locks);
    void RemoveProperty(TElWebDAVStorageObject &Obj, TElWebDAVPropertyInfo &PropInfo);
    void RemoveProperty(TElWebDAVStorageObject *Obj, TElWebDAVPropertyInfo *PropInfo);

[PHP]
    void RemoveProperty(string $URL, TElWebDAVPropertyInfo $PropInfo, TElWebDAVLockList $Locks)
    void RemoveProperty(TElWebDAVStorageObject $Obj, TElWebDAVPropertyInfo $PropInfo)

[Java]
    void removeProperty(String URL, TElWebDAVPropertyInfo PropInfo, TElWebDAVLockList Locks);
    void removeProperty(TElWebDAVStorageObject Obj, TElWebDAVPropertyInfo PropInfo);

Parameters

  • URL - URL of the resource which property has to be removed.
  • Obj - the resource which property has to be removed.
  • PropInfo - the property to be removed.
  • Locks - the locks put on the remote resource.

Description

    Use this method to remove the property on the remote server.

See also:     ChangeProperties     ReadProperties     SetProperty    

Discuss this help topic in SecureBlackbox Forum