Domain Detective

API Reference

Class

CmdletNewDesiredStateMailLatency

Namespace DomainDetective.PowerShell
Assembly DomainDetective.PowerShell
Base PSCmdlet
Modifiers sealed
Attributes
Cmdlet("New", "DDDesiredStateMailLatency") OutputType([typeof(DesiredStateProfile)])

Creates a mail latency desired state policy fragment.

Inheritance

  • PSCmdlet
  • CmdletNewDesiredStateMailLatency

Examples

Require all MX hosts to respond within thresholds

PS>


New-DDDesiredStateMailLatency -Enabled $true -RequireAllConnectSuccess $true -MaxConnectTimeMs 2000 -MaxBannerTimeMs 2000
        

Constructors

public CmdletNewDesiredStateMailLatency() #

Methods

ProcessRecord() #

Creates a mail latency policy fragment as a DesiredStateProfile.

Properties

public Nullable<Boolean> Enabled { get; set; } #
Parameter(Mandatory = false)
public Nullable<Boolean> RequireAtLeastOneResult { get; set; } #
Parameter(Mandatory = false)
public Nullable<Boolean> RequireAllConnectSuccess { get; set; } #
Parameter(Mandatory = false)
public Nullable<Boolean> RequireAllBannerSuccess { get; set; } #
Parameter(Mandatory = false)
public Nullable<Int32> MaxConnectTimeMs { get; set; } #
Parameter(Mandatory = false) ValidateRange(1, 2147483647)
public Nullable<Int32> MaxBannerTimeMs { get; set; } #
Parameter(Mandatory = false) ValidateRange(1, 2147483647)
{{ include "footer" }}