DSAzure.TAzureConnectionString.UseDefaultEndpoints

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property UseDefaultEndpoints: boolean read FUseDefaultEndpoints write FUseDefaultEndpoints;

C++

__property bool UseDefaultEndpoints = {read=FUseDefaultEndpoints, write=FUseDefaultEndpoints, nodefault};

Properties

Type Visibility Source Unit Parent
property published
DSAzure.pas
DSAzure.hpp
DSAzure TAzureConnectionString

Description

Specifies whether the default *.core.windows.net URL should be used.

If UseDefaultEndpoints is set to True, then the URL used for connecting to the storage account will be:

[Protocol]://[AccountName].[queue|table|blob].core.windows.net

Otherwise, the connection URL will be:

[Protocol]://[QueueEndpoint|TableEndpoint|BlobEndpoint]

Note, however, that if UseDevelopmentStorage is set to True, then all other settings are ignored, and the following address is used:

[Protocol]://127.0.0.1:10001/devstoreaccount1

See Also