API Reference
Class
EndpointResult (WsusTlsProbeEvaluator)
TLS probe findings for a single WSUS endpoint.
Inheritance
- Object
- EndpointResult
Constructors
EndpointResult 2 overloads
public EndpointResult(String Url, String Host, Int32 Port, IReadOnlyList<String> Accepted, String Error) #Initializes a new instance with explicit values.
Parameters
- Url System.String
- Endpoint URL.
- Host System.String
- Resolved host.
- Port System.Int32
- TCP port used for the probe.
- Accepted System.Collections.Generic.IReadOnlyList{System.String}
- Accepted TLS protocol versions.
- Error System.String
- Error message if the probe failed; otherwise null.
public EndpointResult() #Initializes a new empty instance for serializers.
Methods
Inherited Methods
Properties
public String Url { get; set; } #Endpoint URL as configured (must be HTTPS to be probed).
public String Host { get; set; } #Resolved host name used for the TCP/TLS handshake.
public Int32 Port { get; set; } #TCP port used for the probe (defaults to 8531 when WSUS URI omits a port).
public IReadOnlyList<String> Accepted { get; set; } #Human-friendly list of accepted protocol versions (e.g., "TLS 1.2", "TLS 1.3").
public String Error { get; set; } #Error message if the probe failed; otherwise null.