Method | Description | |
---|---|---|
ServicebusUtils ( string serverFQDN, string serviceNamespace, string username, string password ) : Microsoft.ServiceBus |
constructor
|
|
checkQueueExists ( string name ) : bool |
check if servicebus queue exists
|
|
createQueue ( string name, bool overwrite ) : void |
create new servicebus queue
|
|
createQueueClientforQueue ( string queueName ) : QueueClient |
create new QueueClient
|
|
deleteQueue ( string name ) : void |
delete servicebus queue
|
Method | Description | |
---|---|---|
initNamespaceManager ( ) : void |
initialize namespaceManager
|
|
initSecurityTokenprovider ( ) : void |
create security token
|
|
initServiceBusConnectionStringBuilder ( ) : void |
Create servicebus connectionstring
|
public ServicebusUtils ( string serverFQDN, string serviceNamespace, string username, string password ) : Microsoft.ServiceBus | ||
serverFQDN | string | |
serviceNamespace | string | |
username | string | |
password | string | |
return | Microsoft.ServiceBus |
public checkQueueExists ( string name ) : bool | ||
name | string | |
return | bool |
public createQueue ( string name, bool overwrite ) : void | ||
name | string | name of the queue |
overwrite | bool | overwrite existing queue? |
return | void |
public createQueueClientforQueue ( string queueName ) : QueueClient | ||
queueName | string | Name of the queue |
return | QueueClient |