Data.Cloud.AzureAPI.StorageAnalytics.TCorsRule.XML

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property XML: string read GetXML;

C++

__property System::UnicodeString XML = {read=GetXML};

Properties

Type Visibility Source Unit Parent
property public
Data.Cloud.AzureAPI.StorageAnalytics.pas
Data.Cloud.AzureAPI.StorageAnalytics.hpp
Data.Cloud.AzureAPI.StorageAnalytics TCorsRule

Description

XML representation of this CORS rule.

For example:

<CorsRule>
    <AllowedOrigins>example.com,example.net,example.org</AllowedOrigins>
    <AllowedMethods>GET,POST</AllowedMethods>
    <MaxAgeInSeconds>300</MaxAgeInSeconds>
    <ExposedHeaders>Accept,Content-Length</ExposedHeaders>
    <AllowedHeaders>Access-Control-Allow-Origin,Allow</AllowedHeaders>
</CorsRule>