C# Класс Burrow.ConnectionString

Parses a connection string for the values required to connect to a RabbitMQ broker instance. Connection string should look something like this: host=192.168.1.1;port=5672;virtualHost=MyVirtualHost;username=MyUsername;password=MyPassword
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
ConnectionString ( string connectionStringValue ) : System

Create a ConnectionString object by a string value

GetValue ( string key ) : string

Get value of a key from the connection string

GetValue ( string key, string defaultValue ) : string

Get value of a key from the connection string, return default value if the key is not set or the key value is null or empty

Описание методов

ConnectionString() публичный Метод

Create a ConnectionString object by a string value
public ConnectionString ( string connectionStringValue ) : System
connectionStringValue string
Результат System

GetValue() публичный Метод

Get value of a key from the connection string
public GetValue ( string key ) : string
key string
Результат string

GetValue() публичный Метод

Get value of a key from the connection string, return default value if the key is not set or the key value is null or empty
public GetValue ( string key, string defaultValue ) : string
key string
defaultValue string
Результат string