Class InetOptions
Provides settings for resolving network interfaces.
Inheritance
System.Object
InetOptions
Namespace: Steeltoe.Common.Net
Assembly: Steeltoe.Common.dll
Syntax
public sealed class InetOptions : object
Properties
| Edit this page View SourceDefaultHostname
Gets or sets the default hostname. Default value: localhost.
Declaration
public string? DefaultHostname { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.String> |
DefaultIPAddress
Gets or sets the default IP address. Default value: 127.0.0.1.
Declaration
public string? DefaultIPAddress { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.String> |
IgnoredInterfaces
Gets or sets a comma-delimited list of network interfaces to ignore.
Declaration
public string? IgnoredInterfaces { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.String> |
PreferredNetworks
Gets or sets a comma-delimited list of preferred networks.
Declaration
public string? PreferredNetworks { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.String> |
SkipReverseDnsLookup
Gets or sets a value indicating whether to skip reverse DNS lookups.
Declaration
public bool SkipReverseDnsLookup { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
UseOnlySiteLocalInterfaces
Gets or sets a value indicating whether to use only site-local network interfaces.
Declaration
public bool UseOnlySiteLocalInterfaces { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |