Table of Contents

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

bool

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

bool

IpAddress

Use Ip Address

public string? IpAddress { get; set; }

Property Value

string

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

bool

Methods

Alter(Exchange)

public ValueTask Alter(Exchange exchange)

Parameters

exchange Exchange

Returns

ValueTask

Init(Exchange)

Initialization of the alteration model

public ValueTask Init(Exchange exchange)

Parameters

exchange Exchange

Returns

ValueTask

Validate(ValidationContext)

Determines whether the specified object is valid.

public IEnumerable<ValidationResult> Validate(ValidationContext validationContext)

Parameters

validationContext ValidationContext

The validation context.

Returns

IEnumerable<ValidationResult>

A collection that holds failed-validation information.