Class MtuDiscoveryOptions
Describes options for MTU discovery.
Inherited Members
Namespace: DotNext.Net.NetworkInformation
Assembly: DotNext.dll
Syntax
public class MtuDiscoveryOptions : PingOptions
Remarks
Initializes a new discovery options.
Constructors
| Edit this page View SourceMtuDiscoveryOptions(byte, int, int)
Describes options for MTU discovery.
Declaration
public MtuDiscoveryOptions(byte ttl = 64, int minMtuSize = 60, int maxMtuSize = 65500)
Parameters
Type | Name | Description |
---|---|---|
byte | ttl | The number of times that ICMP packet can be forwarded by hosts in the route. |
int | minMtuSize | The lowest possible size of MTU. |
int | maxMtuSize | The highest possible size of MTU. |
Remarks
Initializes a new discovery options.
Properties
| Edit this page View SourceMaxMtuSize
Gets or sets the highest possible size of MTU.
Declaration
public int MaxMtuSize { get; set; }
Property Value
Type | Description |
---|---|
int | The highest possible size of MTU. |
MinMtuSize
Gets or sets the lowest possible size of MTU.
Declaration
public int MinMtuSize { get; set; }
Property Value
Type | Description |
---|---|
int | The lowest possible size of MTU. |