Skip to content

Commit

Permalink
Cleaned up warnings on RabbitMQ ConfigurationHostSettings
Browse files Browse the repository at this point in the history
  • Loading branch information
phatboyg committed Apr 26, 2024
1 parent 1050df6 commit f36c14f
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,25 +37,25 @@ public ConfigurationHostSettings()
_hostAddress = new Lazy<Uri>(FormatHostAddress);
}

public RefreshConnectionFactoryCallback OnRefreshConnectionFactory { get; set; }
public RefreshConnectionFactoryCallback? OnRefreshConnectionFactory { get; set; }

public string Host { get; set; }
public string? Host { get; set; }
public int Port { get; set; }
public string VirtualHost { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public string? VirtualHost { get; set; }
public string? Username { get; set; }
public string? Password { get; set; }
public TimeSpan Heartbeat { get; set; }
public bool Ssl { get; set; }
public SslProtocols SslProtocol { get; set; }
public string SslServerName { get; set; }
public string? SslServerName { get; set; }
public SslPolicyErrors AcceptablePolicyErrors { get; set; }
public string ClientCertificatePath { get; set; }
public string ClientCertificatePassphrase { get; set; }
public X509Certificate ClientCertificate { get; set; }
public string? ClientCertificatePath { get; set; }
public string? ClientCertificatePassphrase { get; set; }
public X509Certificate? ClientCertificate { get; set; }
public bool UseClientCertificateAsAuthenticationIdentity { get; set; }
public LocalCertificateSelectionCallback CertificateSelectionCallback { get; set; }
public RemoteCertificateValidationCallback CertificateValidationCallback { get; set; }
public IRabbitMqEndpointResolver EndpointResolver { get; set; }
public LocalCertificateSelectionCallback? CertificateSelectionCallback { get; set; }
public RemoteCertificateValidationCallback? CertificateValidationCallback { get; set; }
public IRabbitMqEndpointResolver? EndpointResolver { get; set; }
public string? ClientProvidedName { get; set; }
public bool PublisherConfirmation { get; set; }
public Uri HostAddress => _hostAddress.Value;
Expand Down

0 comments on commit f36c14f

Please sign in to comment.