Skip to main content
A newer version of this page is available. .

MVCxICalendarExportSettings.ProductIdentifier Property

Gets or sets the identifier for the product that created the iCalendar object.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.2.dll

Declaration

public string ProductIdentifier { get; set; }

Property Value

Type Description
String

A string usually containing company name, product name and language-specific information separated by slashes.

Property Paths

You can access this nested property as listed below:

Object Type Path to ProductIdentifier
MVCxSchedulerExportSettings
.ICalendar.ProductIdentifier

Remarks

According to RFC 2445, this property is required for an iCalendar object. It should be a globally unique identifier that follows a specific syntax like an FPI (Formal Public Identifier) defined in ISO 9070:

“[+-]//Owner//Application Name//Language”

If the string starts with - (minus sign) then the owner information is unregistered, the + (plus sign) identifies it as being registered in ISO 9070 Registrar.

Examples of identifiers are:

“-//DevExpress Inc.//XtraScheduler iCalendarExportDemo//EN”, “-//Apple Inc.//iCal 3.0//EN”, “-//Google Inc//Google Calendar 70.9054//EN”.

See Also