ServiceBusMQ.SbmqSystem.GetAvailableCommands C# (CSharp) Method

GetAvailableCommands() public method

public GetAvailableCommands ( bool suppressErrors = false ) : System.Type[]
suppressErrors bool
return System.Type[]
    public Type[] GetAvailableCommands(bool suppressErrors = false) {
      var sc = _mgr as ISendCommand;
      if( sc != null )
        return sc.GetAvailableCommands(Config.CurrentServer.CommandsAssemblyPaths, Config.CurrentServer.CommandDefinition, suppressErrors);
      else return new Type[0];
    }
    public Type[] GetAvailableCommands(string[] _asmPath, CommandDefinition cmdDef, bool suppressErrors = false) {

Same methods

SbmqSystem::GetAvailableCommands ( string _asmPath, ServiceBusMQ.CommandDefinition cmdDef, bool suppressErrors = false ) : System.Type[]
SbmqSystem::GetAvailableCommands ( string messageBus, string version, string queueType, string asmPaths, ServiceBusMQ.CommandDefinition cmdDef, bool suppressErrors ) : System.Type[]