File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed
src/BootstrapBlazor/Options Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -91,35 +91,40 @@ public class BootstrapBlazorOptions : IOptions<BootstrapBlazorOptions>
9191 public TableSettings TableSettings { get ; set ; } = new ( ) ;
9292
9393 /// <summary>
94- /// 获得/设置 Step 配置实例
94+ /// 获得/设置 <see cref="StepSettings"/> 配置实例
9595 /// </summary>
9696 public StepSettings StepSettings { get ; set ; } = new ( ) ;
9797
9898 /// <summary>
99- /// 获得/设置 ConnectionHubOptions 配置 默认不为空
99+ /// 获得/设置 <see cref=" ConnectionHubOptions"/> 配置 默认不为空
100100 /// </summary>
101101 public ConnectionHubOptions ConnectionHubOptions { get ; set ; } = new ( ) ;
102102
103103 /// <summary>
104- /// 获得/设置 WebClientOptions 配置 默认不为空
104+ /// 获得/设置 <see cref=" WebClientOptions"/> 配置 默认不为空
105105 /// </summary>
106106 public WebClientOptions WebClientOptions { get ; set ; } = new ( ) ;
107107
108108 /// <summary>
109- /// 获得/设置 IpLocatorOptions 配置 默认不为空
109+ /// 获得/设置 <see cref=" IpLocatorOptions"/> 配置 默认不为空
110110 /// </summary>
111111 public IpLocatorOptions IpLocatorOptions { get ; set ; } = new ( ) ;
112112
113113 /// <summary>
114- /// 获得/设置 ScrollOptions 配置 默认不为空
114+ /// 获得/设置 <see cref=" ScrollOptions"/> 配置 默认不为空
115115 /// </summary>
116116 public ScrollOptions ScrollOptions { get ; set ; } = new ( ) ;
117117
118118 /// <summary>
119- /// 获得/设置 ContextMenuOptions 配置 默认不为空
119+ /// 获得/设置 <see cref=" ContextMenuOptions"/> 配置 默认不为空
120120 /// </summary>
121121 public ContextMenuOptions ContextMenuOptions { get ; set ; } = new ( ) ;
122122
123+ /// <summary>
124+ /// 获得/设置 CacheManagerOptions 配置 默认不为空
125+ /// </summary>
126+ public CacheManagerOptions CacheManagerOptions { get ; set ; } = new ( ) ;
127+
123128 BootstrapBlazorOptions IOptions < BootstrapBlazorOptions > . Value => this ;
124129
125130 /// <summary>
You can’t perform that action at this time.
0 commit comments