CommandInvocationIntrinsics.GetCmdlets Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetCmdlets() |
Returns a list of all cmdlets... |
GetCmdlets(String) |
Returns all cmdlets whose names match the pattern... |
GetCmdlets()
Returns a list of all cmdlets...
public:
System::Collections::Generic::List<System::Management::Automation::CmdletInfo ^> ^ GetCmdlets();
public System.Collections.Generic.List<System.Management.Automation.CmdletInfo> GetCmdlets ();
member this.GetCmdlets : unit -> System.Collections.Generic.List<System.Management.Automation.CmdletInfo>
Public Function GetCmdlets () As List(Of CmdletInfo)
Returns
Applies to
GetCmdlets(String)
Returns all cmdlets whose names match the pattern...
public:
System::Collections::Generic::List<System::Management::Automation::CmdletInfo ^> ^ GetCmdlets(System::String ^ pattern);
public System.Collections.Generic.List<System.Management.Automation.CmdletInfo> GetCmdlets (string pattern);
member this.GetCmdlets : string -> System.Collections.Generic.List<System.Management.Automation.CmdletInfo>
Public Function GetCmdlets (pattern As String) As List(Of CmdletInfo)
Parameters
- pattern
- String
Returns
A list of CmdletInfo objects...