@@ -6709,7 +6709,7 @@ Create a new authentication client.
67096709This cmdlet creates a new authentication client.
67106710. PARAMETER CredHandle
67116711The credential handle to use.
6712- . PARAMETER RequestAttributes
6712+ . PARAMETER RequestAttribute
67136713Request attributes.
67146714. PARAMETER Target
67156715Optional SPN target.
@@ -6727,14 +6727,14 @@ function Get-AuthClientContext {
67276727 Param (
67286728 [Parameter (Position = 0 , Mandatory )]
67296729 [NtApiDotNet.Win32.Security.Authentication.CredentialHandle ]$CredHandle ,
6730- [NtApiDotNet.Win32.Security.Authentication.InitializeContextReqFlags ]$RequestAttributes = 0 ,
6730+ [NtApiDotNet.Win32.Security.Authentication.InitializeContextReqFlags ]$RequestAttribute = 0 ,
67316731 [string ]$Target ,
67326732 [byte []]$ChannelBinding ,
67336733 [NtApiDotNet.Win32.Security.Authentication.SecDataRep ]$DataRepresentation = " Native"
67346734 )
67356735
67366736 [NtApiDotNet.Win32.Security.Authentication.ClientAuthenticationContext ]::new($CredHandle , `
6737- $RequestAttributes , $Target , $ChannelBinding , $DataRepresentation ) | Write-Output
6737+ $RequestAttribute , $Target , $ChannelBinding , $DataRepresentation ) | Write-Output
67386738}
67396739
67406740<#
@@ -6744,7 +6744,7 @@ Create a new authentication server.
67446744This cmdlet creates a new authentication server.
67456745. PARAMETER CredHandle
67466746The credential handle to use.
6747- . PARAMETER RequestAttributes
6747+ . PARAMETER RequestAttribute
67486748Request attributes.
67496749. PARAMETER DataRepresentation
67506750Data representation format.
@@ -6760,13 +6760,13 @@ function Get-AuthServerContext {
67606760 Param (
67616761 [Parameter (Position = 0 , Mandatory )]
67626762 [NtApiDotNet.Win32.Security.Authentication.CredentialHandle ]$CredHandle ,
6763- [NtApiDotNet.Win32.Security.Authentication.AcceptContextReqFlags ]$RequestAttributes = 0 ,
6763+ [NtApiDotNet.Win32.Security.Authentication.AcceptContextReqFlags ]$RequestAttribute = 0 ,
67646764 [NtApiDotNet.Win32.Security.Authentication.SecDataRep ]$DataRepresentation = " Native" ,
67656765 [byte []]$ChannelBinding
67666766 )
67676767
67686768 [NtApiDotNet.Win32.Security.Authentication.ServerAuthenticationContext ]::new($CredHandle , `
6769- $RequestAttributes , $ChannelBinding , $DataRepresentation ) | Write-Output
6769+ $RequestAttribute , $ChannelBinding , $DataRepresentation ) | Write-Output
67706770}
67716771
67726772<#
0 commit comments