@@ -300,7 +300,7 @@ public bool EnableAdminSetting(string settingName)
300300 /// Enables the provided admin setting (Needs administrator rights).
301301 /// </summary>
302302 /// <param name="setting">
303- /// The <see cref="WGetNET.WinGetAdminOption "/> to enable.
303+ /// The <see cref="WGetNET.WinGetAdminSetting "/> to enable.
304304 /// </param>
305305 /// <returns>
306306 /// <see langword="true"/> if the action was succesfull and <see langword="false"/> if it failed.
@@ -317,7 +317,7 @@ public bool EnableAdminSetting(string settingName)
317317 /// <exception cref="System.Security.SecurityException">
318318 /// The current user is missing administrator privileges for this call.
319319 /// </exception>
320- public bool EnableAdminSetting ( WinGetAdminOption setting )
320+ public bool EnableAdminSetting ( WinGetAdminSetting setting )
321321 {
322322 ArgsHelper . ThrowIfObjectIsNull ( setting , "setting" ) ;
323323
@@ -361,7 +361,7 @@ public async Task<bool> EnableAdminSettingAsync(string settingName)
361361 /// Asynchronously enables the provided admin setting (Needs administrator rights).
362362 /// </summary>
363363 /// <param name="setting">
364- /// The <see cref="WGetNET.WinGetAdminOption "/> to enable.
364+ /// The <see cref="WGetNET.WinGetAdminSetting "/> to enable.
365365 /// </param>
366366 /// <returns>
367367 /// A <see cref="System.Threading.Tasks.Task"/>, containing the result.
@@ -379,7 +379,7 @@ public async Task<bool> EnableAdminSettingAsync(string settingName)
379379 /// <exception cref="System.Security.SecurityException">
380380 /// The current user is missing administrator privileges for this call.
381381 /// </exception>
382- public async Task < bool > EnableAdminSettingAsynv ( WinGetAdminOption setting )
382+ public async Task < bool > EnableAdminSettingAsynv ( WinGetAdminSetting setting )
383383 {
384384 ArgsHelper . ThrowIfObjectIsNull ( setting , "setting" ) ;
385385
@@ -422,7 +422,7 @@ public bool DisableAdminSetting(string settingName)
422422 /// Disables the provided admin setting (Needs administrator rights).
423423 /// </summary>
424424 /// <param name="setting">
425- /// The <see cref="WGetNET.WinGetAdminOption "/> to disable.
425+ /// The <see cref="WGetNET.WinGetAdminSetting "/> to disable.
426426 /// </param>
427427 /// <returns>
428428 /// <see langword="true"/> if the action was succesfull and <see langword="false"/> if it failed.
@@ -439,7 +439,7 @@ public bool DisableAdminSetting(string settingName)
439439 /// <exception cref="System.Security.SecurityException">
440440 /// The current user is missing administrator privileges for this call.
441441 /// </exception>
442- public bool DisableAdminSetting ( WinGetAdminOption setting )
442+ public bool DisableAdminSetting ( WinGetAdminSetting setting )
443443 {
444444 ArgsHelper . ThrowIfObjectIsNull ( setting , "setting" ) ;
445445
@@ -483,7 +483,7 @@ public async Task<bool> DisableAdminSettingAsync(string settingName)
483483 /// Asynchronously disables the provided admin setting (Needs administrator rights).
484484 /// </summary>
485485 /// <param name="setting">
486- /// The <see cref="WGetNET.WinGetAdminOption "/> to disable.
486+ /// The <see cref="WGetNET.WinGetAdminSetting "/> to disable.
487487 /// </param>
488488 /// <returns>
489489 /// A <see cref="System.Threading.Tasks.Task"/>, containing the result.
@@ -501,7 +501,7 @@ public async Task<bool> DisableAdminSettingAsync(string settingName)
501501 /// <exception cref="System.Security.SecurityException">
502502 /// The current user is missing administrator privileges for this call.
503503 /// </exception>
504- public async Task < bool > DisableAdminSettingAsync ( WinGetAdminOption setting )
504+ public async Task < bool > DisableAdminSettingAsync ( WinGetAdminSetting setting )
505505 {
506506 ArgsHelper . ThrowIfObjectIsNull ( setting , "setting" ) ;
507507
0 commit comments