CommandProviderGetCommandsUnsorted Method
            Gets all the commands supported by this provider.
            
Namespace: Ookii.CommandLine.SupportAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
public abstract IEnumerable<CommandInfo> GetCommandsUnsorted(
	CommandManager manager
)
Public MustOverride Function GetCommandsUnsorted ( 
	manager As CommandManager
) As IEnumerable(Of CommandInfo)
Dim instance As CommandProvider
Dim manager As CommandManager
Dim returnValue As IEnumerable(Of CommandInfo)
returnValue = instance.GetCommandsUnsorted(manager)
public:
virtual IEnumerable<CommandInfo^>^ GetCommandsUnsorted(
	CommandManager^ manager
) abstract
- manager  CommandManager
 - The CommandManager that the commands belong to.
 
IEnumerableCommandInfo
            A list of 
CommandInfo instances for the commands, in arbitrary order.