DSAzure.TAzureBlobService.SetBlobProperties

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: public
Source:
DSAzure.pas
DSAzure.hpp
Unit: DSAzure
Parent: TAzureBlobService

Delphi

function SetBlobProperties(const ContainerName: String; const BlobName: String;
const BlobCacheControl: String = ''; const BlobContentType: String = '';
const BlobContentEncoding: String = ''; const BlobContentLanguage: String = '';
const BlobContentMD5: String = ''; const LeaseId: String = ''): boolean;

C++

bool __fastcall SetBlobProperties(const System::UnicodeString ContainerName, const System::UnicodeString BlobName, const System::UnicodeString BlobCacheControl = System::UnicodeString(), const System::UnicodeString BlobContentType = System::UnicodeString(), const System::UnicodeString BlobContentEncoding = System::UnicodeString(), const System::UnicodeString BlobContentLanguage = System::UnicodeString(), const System::UnicodeString BlobContentMD5 = System::UnicodeString(), const System::UnicodeString LeaseId = System::UnicodeString());

Description

Sets system property values for the specified blob.

SetBlobProperties sets system property values for the given blob. The available properties to modify are the parameters as you see them in the function signature. LeaseId is required if there is an active lease on the blob.

For more information on the properties, refer to the MSDN documentation in the See Also section.

See Also