EMS.ResourceTypes.TEMSCommonResource.BaseURLSegmentCount

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property BaseURLSegmentCount: Integer read FBaseURLSegmentCount;

C++

__property int BaseURLSegmentCount = {read=FBaseURLSegmentCount, nodefault};

Properties

Type Visibility Source Unit Parent
property public
EMS.ResourceTypes.pas
EMS.ResourceTypes.hpp
EMS.ResourceTypes TEMSCommonResource

Description

Number of URL segments in the base URL of this EMS resource.

The base URL of this EMS resource is equal to the name of the EMS resource (as passed to its constructor) in lowercase. The URL segments of that base URL are the parts of the URL that are separated by slashes.

These are some examples of values of BaseURLSegmentCount depending on the name of the EMS resource:

Name Base URL URL Segments BaseURLSegmentCount

MyResource

myresource

myresource

1

My/Composed/Resource

my/composed/resource

my, composed, resource

3

See Also