Functions/Get-Foo.ps1
function Get-Foo { [CmdletBinding()] param( [Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true)] [System.Object] ${Path}, [Timespan]$WebCommandTimeout = '0:0:45' ) } |
function Get-Foo { [CmdletBinding()] param( [Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true)] [System.Object] ${Path}, [Timespan]$WebCommandTimeout = '0:0:45' ) } |