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
/// Add ActionKeyword and update action keyword metadata for specific plugin
226
+
/// Add ActionKeyword and update action keyword metadata for specific plugin.
227
227
/// Before adding, please check if action keyword is already assigned by <see cref="ActionKeywordAssigned"/>
228
228
/// </summary>
229
229
/// <param name="pluginId">ID for plugin that needs to add action keyword</param>
@@ -284,9 +284,10 @@ public interface IPublicAPI
284
284
TLoadSettingJsonStorage<T>()whereT:new();
285
285
286
286
/// <summary>
287
-
/// Save JsonStorage for current plugin's setting. This is the method used to save settings to json in Flow.Launcher
287
+
/// Save JsonStorage for current plugin's setting. This is the method used to save settings to json in Flow.
288
288
/// This method will save the original instance loaded with LoadJsonStorage.
289
-
/// This API call is for manually Save. Flow will automatically save all setting type that has called LoadSettingJsonStorage or SaveSettingJsonStorage previously.
289
+
/// This API call is for manually Save.
290
+
/// Flow will automatically save all setting type that has called <see cref="LoadSettingJsonStorage"/> or <see cref="SaveSettingJsonStorage"/> previously.
290
291
/// </summary>
291
292
/// <typeparam name="T">Type for Serialization</typeparam>
/// Save BinaryStorage for current plugin's cache. This is the method used to save cache to binary in Flow.Launcher
432
+
/// Save BinaryStorage for current plugin's cache. This is the method used to save cache to binary in Flow.
432
433
/// This method will save the original instance loaded with LoadCacheBinaryStorageAsync.
433
-
/// This API call is for manually Save. Flow will automatically save all cache type that has called LoadCacheBinaryStorageAsync or SaveCacheBinaryStorageAsync previously.
434
+
/// This API call is for manually Save.
435
+
/// Flow will automatically save all cache type that has called <see cref="LoadCacheBinaryStorageAsync"/> or <see cref="SaveCacheBinaryStorageAsync"/> previously.
434
436
/// </summary>
435
437
/// <typeparam name="T">Type for Serialization</typeparam>
0 commit comments