Discuss this help topic in SecureBlackbox Forum

TElWebDAVServer.GetProperty

TElWebDAVServer     See also     


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


Retrieves a server property by its name and namespace.

Declaration

[C#]
    TElWebDAVProperty GetProperty(string NS, string Name);

[VB.NET]
    Function GetProperty(ByVal NS As String, ByVal Name As String) As TElWebDAVProperty

[Pascal]
    function GetProperty(const NS : string; const Name : string) : TElWebDAVProperty;

[C++]
    TElWebDAVPropertyHandle GetProperty(const std::string &NS, const std::string &Name);

[PHP]
    TElWebDAVProperty GetProperty(string $NS, string $Name)

[Java]
    TElWebDAVProperty getProperty(String NS, String Name);

Parameters

  • Name - the name of the desired property.
  • NS - property's namespace.

Return value

    Returns a TElWebDAVProperty object representing the desired property.

Description

    Use this method to get the server's property by its name and namespace.

See also:     Properties     AddProperty     RemoveProperty    

Discuss this help topic in SecureBlackbox Forum