Hello all.
I would like to get attributes(Parameter,CmdletBinding...etc???) and its
members (Position,Mondatory,SuppotsShouldProcess...etc) list.
Like the following.
# Get keywords
[type]::gettype("System.Management.Automation.KeywordTokenReader")|%{$_.InvokeMember("_keywordTokens", "NonPublic,Static,GetField", $null, $_,@())}
Is this possible?
Thanks.


