Discuss this help topic in SecureBlackbox Forum

TElAWSS3DataStorageBucket.ObjectExists

TElAWSS3DataStorageBucket     See also     


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


Checks whether data object exists in the bucket.

Declaration

[C#]
    bool ObjectExists(string Key);

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

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

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

[PHP]
    bool ObjectExists(string $Key)

[Java]
    boolean objectExists(String Key);

Parameters

  • Key - a unique identifier of the object within a bucket

Return value

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

Description

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

See also:     CreateObject     List    

Discuss this help topic in SecureBlackbox Forum