Class MqttClientWebSocketProxyConfiguration
Inheritance
MqttClientWebSocketProxyConfiguration
Assembly: Silverback.Integration.MQTT.dll
Syntax
public record MqttClientWebSocketProxyConfiguration : IValidatableSettings, IEquatable<MqttClientWebSocketProxyConfiguration>
Constructors
MqttClientWebSocketProxyConfiguration()
Declaration
public MqttClientWebSocketProxyConfiguration()
MqttClientWebSocketProxyConfiguration(MqttClientWebSocketProxyConfiguration)
Declaration
protected MqttClientWebSocketProxyConfiguration(MqttClientWebSocketProxyConfiguration original)
Parameters
Properties
Address
Declaration
public string? Address { get; init; }
Property Value
BypassList
Declaration
public string[]? BypassList { get; init; }
Property Value
BypassOnLocal
Gets a value indicating whether the proxy should be bypassed for local calls.
Declaration
public bool BypassOnLocal { get; init; }
Property Value
Domain
Gets proxy server domain.
Declaration
public string? Domain { get; init; }
Property Value
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
Password
Gets the password to be used to authenticate with the proxy server.
Declaration
public string? Password { get; init; }
Property Value
UseDefaultCredentials
Gets a value indicating whether the default (system) credentials should be used.
Declaration
public bool UseDefaultCredentials { get; init; }
Property Value
Username
Gets the username to be used to authenticate with the proxy server.
Declaration
public string? Username { get; init; }
Property Value
Methods
Equals(MqttClientWebSocketProxyConfiguration?)
Declaration
public virtual bool Equals(MqttClientWebSocketProxyConfiguration? other)
Parameters
Returns
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
ToString()
Declaration
public override string ToString()
Returns
Overrides
Validate()
Declaration
Operators
operator ==(MqttClientWebSocketProxyConfiguration?, MqttClientWebSocketProxyConfiguration?)
Declaration
public static bool operator ==(MqttClientWebSocketProxyConfiguration? left, MqttClientWebSocketProxyConfiguration? right)
Parameters
Returns
operator !=(MqttClientWebSocketProxyConfiguration?, MqttClientWebSocketProxyConfiguration?)
Declaration
public static bool operator !=(MqttClientWebSocketProxyConfiguration? left, MqttClientWebSocketProxyConfiguration? right)
Parameters
Returns
Implements