具有多个自定义属性的PowerShell方法
本文关键字:PowerShell 方法 自定义属性 | 更新日期: 2023-09-27 18:03:05
我无法在PowerShell 5.0类方法上使用多个自定义属性(decorator)。在c#中,我可以这样做:
public class SomeAttribute : Attribute {
public string Text { get; set; }
}
public class OtherAttribute : Attribute {
public string Text { get; set; }
}
public class MyClass {
[SomeAttribute(Text = "sometext")]
[OtherAttribute(Text = "othertext")]
public void MyMethod() {
// ...
}
}
然后在其他地方调用
object[] customAttributes = typeof(MyClass).GetMethod("MyMethod").GetCustomAttributes(false);
,它给了我一个与方法相关的所有自定义属性的数组,没有任何问题
在PowerShell 5.0中,我试图类比地使用:
class SomeAttribute : Attribute {
[string]$Text
}
class OtherAttribute : Attribute {
[string]$Text
}
class MyClass {
[SomeAttribute(Text="sometext")]
[OtherAttribute(Text="othertext")]
MyMethod() {
# ...
}
}
似乎是正确的语法,因为PowerShell很乐意接受它。但是通过
列出属性[MyClass].GetMethod("MyMethod").GetCustomAttributes($false)
返回以下错误:
Exception calling "GetCustomAttributes" with "1" argument(s): "Could not load type 'OtherAttribute' from assembly '⧹powershell, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null'."
At line:1 char:1
+ [MyClass].GetMethod("MyMethod").GetCustomAttributes($false)
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [], MethodInvocationException
+ FullyQualifiedErrorId : TypeLoadException
和
[MyClass].GetMethod("MyMethod").CustomAttributes
返回$null
。
然而,当我只使用一个自定义属性时,一切都如预期的那样工作,并且使用上面的代码片段正确返回该属性。
如何为PowerShell 5.0类方法正确定义多个自定义属性?
更新-仅使用一个自定义属性
的行为示例让我们只假设原始问题中的第一个自定义属性。
class SomeAttribute : Attribute {
[string]$Text
}
class MyClass {
[SomeAttribute(Text="sometext")]
MyMethod() {
# ...
}
}
然后[MyClass].GetMethod("MyMethod").GetCustomAttributes($false)
给出如下输出
Text TypeId
---- ------
sometext SomeAttribute
和
[MyClass].GetMethod("MyMethod").CustomAttributes
给出如下输出
AttributeType Constructor ConstructorArguments NamedArguments
------------- ----------- -------------------- --------------
SomeAttribute Void .ctor() {} {Text = "sometext"}
这让我相信有一个属性确实像预期的那样工作。
似乎PowerShell (.NET, IMHO)有麻烦引用两个不同的程序集具有相同的全名(有人告诉我,这在。NET中是不可能的)。
PS> class A {}
PS> class B {}
PS> [A].Assembly -eq [B].Assembly
False
PS> [A].Assembly.FullName -eq [B].Assembly.FullName
True
PS> class CA { [A] $A }; class CB { [B] $B }
PS> [CA]::new().A #work fine
PS> [CB]::new().B #error
解决方案是在同一个命令中定义类A
和B
,这将把它们放在同一个生成的程序集中:
PS> class A {}; class B {}
PS> [A].Assembly -eq [B].Assembly
True
PS> class CA { [A] $A }; class CB { [B] $B }
PS> [CA]::new().A #work fine
PS> [CB]::new().B #work fine
所以,这对我来说很好:
PS> class SomeAttribute : Attribute {
>>> [string]$Text
>>> }
>>> class OtherAttribute : Attribute {
>>> [string]$Text
>>> }
PS> class MyClass {
>>> [SomeAttribute(Text="sometext")]
>>> [OtherAttribute(Text="othertext")]
>>> MyMethod() {
>>> # ...
>>> }
>>> }
PS> [MyClass].GetMethod("MyMethod").GetCustomAttributes($false)
Text TypeId
---- ------
sometext SomeAttribute
othertext OtherAttribute
另一个解决方案是不在交互式会话中定义类,而是在脚本文件中定义类。在这种情况下,混淆的文件名将是生成的程序集名称的一部分,因此即使在不同的脚本文件中定义属性,也不会遇到这个问题。
即使只使用一个自定义属性,我也怀疑您是否真的得到了预期的结果。原因是方法不支持属性,至少我发现是这样。方法支持可选的返回类型,在PowerShell中,恰好看起来就像属性。也就是说,你可以定义一个返回void的方法…
MyMethod() {
$foo = 5
}
或返回某值的方法(在本例中为int)…
[int] MyMethod() {
$foo = 5
return $foo
}
(我希望有人能证明我错了,虽然,并显示PowerShell类做支持属性!)