Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -558,17 +558,17 @@ public IReadOnlyList<string> PartitionKeyPaths
/// It is an optional property.
///
/// The unit of measurement is seconds. The maximum allowed value is 2147483647.
/// A valid value must be either a nonzero positive integer, '-1' or <c>null</c>.
/// When updating this property, a valid value must be either a positive integer or '-1'.
///
/// By default, AnalyticalStoreTimeToLiveInSeconds is set to null meaning analytical store is turned-off.
/// By default, AnalyticalStoreTimeToLiveInSeconds is <c>null</c> meaning analytical store is turned-off.
/// </value>
/// <remarks>
/// <para>
/// The <see cref="AnalyticalStoreTimeToLiveInSeconds"/> is applicable to all the item changes in the container.
/// It cannot be overriden or customizable per item.
/// </para>
/// <para>
/// When the <see cref="AnalyticalStoreTimeToLiveInSeconds"/> is <c>null</c> analytical store is turned-off.
/// When the <see cref="AnalyticalStoreTimeToLiveInSeconds"/> is 0 analytical store is turned-off.
/// It means all the item changes in the container are disregarded.
/// </para>
/// <para>
Expand All @@ -581,10 +581,10 @@ public IReadOnlyList<string> PartitionKeyPaths
/// </para>
/// </remarks>
/// <example>
/// The example below disables analytical store on a container.
/// The example below disables analytical store on a container if previously enabled.
/// <code language="c#">
/// <![CDATA[
/// container.AnalyticalStoreTimeToLiveInSeconds = null;
/// container.AnalyticalStoreTimeToLiveInSeconds = 0;
/// ]]>
/// </code>
/// </example>
Expand Down