We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35b06d0 commit 508c96dCopy full SHA for 508c96d
PSModuleDevelopment/functions/assembly/Get-PSMDMember.ps1
@@ -44,8 +44,8 @@
44
{
45
$PSBoundParameters['OutBuffer'] = 1
46
}
47
- if ($ArgumentType) { $PSBoundParameters.Remove("ArgumentType") }
48
- if ($ReturnType) { $PSBoundParameters.Remove("ReturnType") }
+ if ($ArgumentType) { $null = $PSBoundParameters.Remove("ArgumentType") }
+ if ($ReturnType) { $null = $PSBoundParameters.Remove("ReturnType") }
49
$wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand('Microsoft.PowerShell.Utility\Get-Member', [System.Management.Automation.CommandTypes]::Cmdlet)
50
$scriptCmd = { & $wrappedCmd @PSBoundParameters }
51
$steppablePipeline = $scriptCmd.GetSteppablePipeline($myInvocation.CommandOrigin)
0 commit comments