We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given the following powershell module
Enum ComputerType { Server Client } Class Computer { [String]$Name [ComputerType]$Type } Function Get-InternalStuff { #Does internal stuff } Function Get-ComputerData { #Does stuff } Export-ModuleMember -Function Get-ComputerData
Import-Module PsClassUtils Get-CUClass Name : ComputerType Property : {Server, Client} Constructor : Method : IsInherited : False ParentClassName : Path : C:\Users\taavast3\OneDrive\Repo\Projects\OpenSource\Stephanevg.github.io\_Drafts\plop.psm1 Name : Computer Property : {Name, Type} Constructor : Method : IsInherited : False ParentClassName : Path : C:\Users\taavast3\OneDrive\Repo\Projects\OpenSource\Stephanevg.github.io\_Drafts\plop.psm1
It should not Show the Enum.
The text was updated successfully, but these errors were encountered:
An If Block is missing in Get-CUClass You should had the following If statement after the Foreach statement
Foreach ( $x in (Get-CULoadedClass @ClassParams ) ) { If ( !$x.IsEnum ){
Sorry, something went wrong.
Issue Fixing
ff6bf21
Fixing issue Stephanevg#104 Fixing issue Stephanevg#103 Add Pipeline support for Get-CUEnum Stephanevg#102
No branches or pull requests
Given the following powershell module
It should not Show the Enum.
The text was updated successfully, but these errors were encountered: