Discuss this help topic in SecureBlackbox Forum

TElWebDAVServer.AddProperty

TElWebDAVServer     See also     


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


Adds a new server property.

Declaration

[C#]
    bool AddProperty(TElWebDAVProperty Prop);

[VB.NET]
    Function AddProperty(ByVal Prop As TElWebDAVProperty) As Boolean

[Pascal]
    function AddProperty(const Prop : TElWebDAVProperty) : boolean;

[C++]
    bool AddProperty(const TElWebDAVProperty &Prop);
    bool AddProperty(const TElWebDAVProperty *Prop);

[PHP]
    bool AddProperty(TElWebDAVProperty $Prop)

[Java]
    boolean addProperty(TElWebDAVProperty Prop);

Parameters

  • Prop - the property to be added.

Return value

    Returns True if the property was successfully added, and False otherwise.

Description

    Use this method to add a new property to the list. Note, that the property can not be added, if a property with same name and same namespace already exists.

See also:     Properties     GetProperty     RemoveProperty    

Discuss this help topic in SecureBlackbox Forum