Discuss this help topic in SecureBlackbox Forum

TElWinAzureDataStorage.SetObjectAllocatedSize

TElWinAzureDataStorage     See also     


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


Allocates space for data object.

Declaration

[C#]
    void SetObjectAllocatedSize(string ContainerName, string Name, long Value);

[VB.NET]
    Sub SetObjectAllocatedSize(ByVal ContainerName As String, ByVal Name As String, ByVal Value As Long)

[Pascal]
    procedure SetObjectAllocatedSize(const ContainerName : string; const Name : string; Value : Int64);

[C++]
    void SetObjectAllocatedSize(const std::string &ContainerName, const std::string &Name, int64_t Value);

[PHP]
    void SetObjectAllocatedSize(string $ContainerName, string $Name, integer $Value)

[Java]
    void setObjectAllocatedSize(String ContainerName, String Name, long Value);

Parameters

  • ContainerName - name of the container with object
  • Name - name of the object
  • Value - specifies how much space must be allocated

Description

    Use this method to set object allocated size.

See also:     GetObjectAllocatedSize    

Discuss this help topic in SecureBlackbox Forum