Class MtuDiscoveryOptions
Describes options for MTU discovery.
Inherited Members
Namespace: DotNext.Net.NetworkInformation
Assembly: DotNext.dll
Syntax
public class MtuDiscoveryOptions : PingOptions
Constructors
| Improve this Doc View SourceMtuDiscoveryOptions(Byte, Int32, Int32)
Initializes a new discovery options.
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. |
Int32 | minMtuSize | The lowest possible size of MTU. |
Int32 | maxMtuSize | The highest possible size of MTU. |
Properties
| Improve this Doc View SourceMaxMtuSize
Gets or sets the highest possible size of MTU.
Declaration
public int MaxMtuSize { get; set; }
Property Value
Type | Description |
---|---|
Int32 | 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 |
---|---|
Int32 | The lowest possible size of MTU. |