You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<keyalias="forceRepublishWarning">ADVARSEL: Udgivelse af alle sider under denne i indholdstræet, uanset om de er ændret eller ej, kan være en ressourcekrævende og langvarig proces.</key>
303
-
<keyalias="forceRepublishAdvisory">Dette bør ikke være nødvendigt under normale omstændigheder, så fortsæt kun med denne handling, hvis du er sikker på, at det er nødvendigt.</key>
304
301
<keyalias="isSensitiveValue">Denne værdi er skjult. Hvis du har brug for adgang til at se denne værdi, bedes du
<keyalias="forceRepublishWarning">WARNING: Publishing all pages below this one in the content tree, whether or not they have changed, can be an expensive and long-running operation.</key>
314
-
<keyalias="forceRepublishAdvisory">This should not be necessary in normal circumstances so please only proceed with this option selected if you are certain it is required.</key>
315
312
<keyalias="isSensitiveValue">This value is hidden. If you need access to view this value please contact your
<keyalias="forceRepublishWarning">WARNING: Publishing all pages below this one in the content tree, whether or not they have changed, can be an expensive and long-running operation.</key>
313
-
<keyalias="forceRepublishAdvisory">This should not be necessary in normal circumstances so please only proceed with this option selected if you are certain it is required.</key>
314
311
<keyalias="isSensitiveValue">This value is hidden. If you need access to view this value please contact your
Copy file name to clipboardExpand all lines: src/Umbraco.Core/Models/ContentEditing/ContentSaveAction.cs
-32Lines changed: 0 additions & 32 deletions
Original file line number
Diff line number
Diff line change
@@ -59,43 +59,11 @@ public enum ContentSaveAction
59
59
/// Saves and publishes the content item including all descendants regardless of whether they have a published version
60
60
/// or not.
61
61
/// </summary>
62
-
[Obsolete("This option is no longer used as the 'force' aspect has been extended into options for publishing unpublished and re-publishing changed content. Please use one of those options instead.")]
63
62
PublishWithDescendantsForce=10,
64
63
65
64
/// <summary>
66
65
/// Creates and publishes the new content item including all descendants regardless of whether they have a published
67
66
/// version or not.
68
67
/// </summary>
69
-
[Obsolete("This option is no longer used as the 'force' aspect has been extended into options for publishing unpublished and re-publishing changed content. Please use one of those options instead.")]
70
68
PublishWithDescendantsForceNew=11,
71
-
72
-
/// <summary>
73
-
/// Saves and publishes the content item including all descendants including publishing previously unpublished content.
74
-
/// </summary>
75
-
PublishWithDescendantsIncludeUnpublished=12,
76
-
77
-
/// <summary>
78
-
/// Saves and publishes the new content item including all descendants including publishing previously unpublished content.
79
-
/// </summary>
80
-
PublishWithDescendantsIncludeUnpublishedNew=13,
81
-
82
-
/// <summary>
83
-
/// Saves and publishes the content item including all descendants irrespective of whether there are any pending changes.
84
-
/// </summary>
85
-
PublishWithDescendantsForceRepublish=14,
86
-
87
-
/// <summary>
88
-
/// Saves and publishes the new content item including all descendants including publishing previously unpublished content.
89
-
/// </summary>
90
-
PublishWithDescendantsForceRepublishNew=15,
91
-
92
-
/// <summary>
93
-
/// Saves and publishes the content item including all descendants including publishing previously unpublished content and irrespective of whether there are any pending changes.
/// Saves and publishes the new content item including all descendants including publishing previously unpublished content and irrespective of whether there are any pending changes.
/// Indicates if the database cache is in the process of being rebuilt.
36
+
/// </summary>
37
+
/// <returns></returns>
38
+
boolIsRebuilding()=>false;
39
+
34
40
/// <summary>
35
41
/// Rebuilds internal database caches (but does not reload).
36
42
/// </summary>
@@ -61,6 +67,38 @@ void Rebuild(
61
67
IReadOnlyCollection<int>?mediaTypeIds=null,
62
68
IReadOnlyCollection<int>?memberTypeIds=null);
63
69
70
+
/// <summary>
71
+
/// Rebuilds internal database caches (but does not reload).
72
+
/// </summary>
73
+
/// <param name="contentTypeIds">
74
+
/// If not null will process content for the matching content types, if empty will process all
75
+
/// content
76
+
/// </param>
77
+
/// <param name="mediaTypeIds">
78
+
/// If not null will process content for the matching media types, if empty will process all
79
+
/// media
80
+
/// </param>
81
+
/// <param name="memberTypeIds">
82
+
/// If not null will process content for the matching members types, if empty will process all
83
+
/// members
84
+
/// </param>
85
+
/// <param name="useBackgroundThread">Flag indicating whether to use a background thread for the operation and immediately return to the caller.</param>
86
+
/// <remarks>
87
+
/// <para>
88
+
/// Forces the snapshot service to rebuild its internal database caches. For instance, some caches
89
+
/// may rely on a database table to store pre-serialized version of documents.
90
+
/// </para>
91
+
/// <para>
92
+
/// This does *not* reload the caches. Caches need to be reloaded, for instance via
/// Rebuilds all internal database caches (but does not reload).
120
+
/// </summary>
121
+
/// <param name="useBackgroundThread">Flag indicating whether to use a background thread for the operation and immediately return to the caller.</param>
122
+
/// <remarks>
123
+
/// <para>
124
+
/// Forces the snapshot service to rebuild its internal database caches. For instance, some caches
125
+
/// may rely on a database table to store pre-serialized version of documents.
126
+
/// </para>
127
+
/// <para>
128
+
/// This does *not* reload the caches. Caches need to be reloaded, for instance via
0 commit comments