当前位置 : 主页 > 网络推广 > seo >

有没有办法从函数内检索PowerShell函数名?

来源:互联网 收集:自由互联 发布时间:2021-06-16
例如: function Foo { [string]$functionName = commandRetrievesFoo Write-Host "This function is called $functionName"} 输出: PS FooThis function is called foo 您可以使用$MyInvocation,其中包含有关当前执行的内容的一些
例如:

function Foo { 
    [string]$functionName = commandRetrievesFoo
    Write-Host "This function is called $functionName"
}

输出:

PS > Foo
This function is called foo
您可以使用$MyInvocation,其中包含有关当前执行的内容的一些有用信息.

function foo {
    'This function is called {0}.' -f $MyInvocation.MyCommand
}
网友评论