Discuss this help topic in SecureBlackbox Forum

TElFileDataStorage.ObjectExists

TElFileDataStorage     See also     


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


Checks whether data object exists in the storage.

Declaration

[C#]
    bool ObjectExists(string ObjName);

[VB.NET]
    Function ObjectExists(ByVal ObjName As String) As Boolean

[Pascal]
    function ObjectExists(const ObjName : string) : boolean;

[C++]
    bool ObjectExists(const std::string &ObjName);

[PHP]
    bool ObjectExists(string $ObjName)

[Java]
    boolean objectExists(String ObjName);

Parameters

  • ObjName - name of the object

Return value

    Returns True if the object exists in the data storage and False otherwise.

Description

    Use this method to check if certain data objects are present in the storage.

See also:     CopyObject     DeleteObject    

Discuss this help topic in SecureBlackbox Forum