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
Namespace.Member(s)()
As we are dynamic namespaces as patterns, it should be fairly straightforward to discover members of an object, module, or dictionary that match.
For example, if we have a namespace "Get", with the pattern ^Get, calling .Members($obj) would return all the members in $obj that matched ^Get.
^Get
.Members($obj)
$obj
If the object is a dictionary, the keys should be checked.
If the object is a module, exported variables and command should be checked.
If the object is a PSObject, names should be checked against the .psobject.properties and against the underlying .NET type.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As we are dynamic namespaces as patterns, it should be fairly straightforward to discover members of an object, module, or dictionary that match.
For example, if we have a namespace "Get", with the pattern
^Get
, calling.Members($obj)
would return all the members in$obj
that matched^Get
.If the object is a dictionary, the keys should be checked.
If the object is a module, exported variables and command should be checked.
If the object is a PSObject, names should be checked against the .psobject.properties and against the underlying .NET type.
The text was updated successfully, but these errors were encountered: