Skip to content

IServiceBusDiscovery

danielHalan edited this page Feb 16, 2013 · 6 revisions

Interface to Send Commands. ISendCommand should be implemented in same class as IServiceBusManager if it supports to send commands.

CanAccessServer

Checks if the current user can access the server specified, and that the server has a Service Bus of this type running

bool CanAccessServer(string server);

CanAccessQueue

Checks if the current user can access a specific queue on a server

bool CanAccessQueue(string server, string queueName);

GetAllAvailableQueueNames

Returns all available queues on specified server

string[] GetAllAvailableQueueNames(string server);

Clone this wiki locally