Class ConnectionSetupStepModel
- Namespace
- Fluxzy.Core.Breakpoints
- Assembly
- Fluxzy.Core.dll
public class ConnectionSetupStepModel : IBreakPointAlterationModel, IValidatableObject
- Inheritance
-
ConnectionSetupStepModel
- Implements
- Inherited Members
Properties
Done
public bool Done { get; }
Property Value
ForceNewConnection
Force exchange to create new connection instead picking from connection pool. If this setting is false, the following properties may not being set as the connection is picked from the connection pool.
public bool ForceNewConnection { get; set; }
Property Value
IpAddress
Use Ip Address
public string? IpAddress { get; set; }
Property Value
Port
Used port
public int? Port { get; set; }
Property Value
- int?
SkipRemoteCertificateValidation
Whether we should skip certificate validation
public bool SkipRemoteCertificateValidation { get; set; }
Property Value
Methods
Alter(Exchange)
public ValueTask Alter(Exchange exchange)
Parameters
exchange
Exchange
Returns
Init(Exchange)
Initialization of the alteration model
public ValueTask Init(Exchange exchange)
Parameters
exchange
Exchange
Returns
Validate(ValidationContext)
Determines whether the specified object is valid.
public IEnumerable<ValidationResult> Validate(ValidationContext validationContext)
Parameters
validationContext
ValidationContextThe validation context.
Returns
- IEnumerable<ValidationResult>
A collection that holds failed-validation information.