Class NetworkService.IpAdressInformation
Represents detailed information about an IP address associated with a network interface.
Inherited Members
Namespace: Coree.NETStandard.Services.NetworkManagement
Assembly: Coree.NETStandard.dll
Syntax
public class NetworkService.IpAdressInformation
Remarks
Stores IP address details including subnet mask, host names, and DNS suffix related to a network interface.
Properties
| Edit this page View SourceApdapterDnsSuffix
Gets or sets the DNS suffix associated with the network adapter.
Declaration
public string? ApdapterDnsSuffix { get; set; }
Property Value
Type | Description |
---|---|
string |
HostEntryHostName
Gets or sets the DNS host entry name for the IP address.
Declaration
public string? HostEntryHostName { get; set; }
Property Value
Type | Description |
---|---|
string |
IPAddress
Gets or sets the IP address.
Declaration
public IPAddress? IPAddress { get; set; }
Property Value
Type | Description |
---|---|
IPAddress |
LocalhostHostName
Gets or sets the host name if the IP address is the local host.
Declaration
public string? LocalhostHostName { get; set; }
Property Value
Type | Description |
---|---|
string |
LocalhostHostNameWithSuffix
Gets or sets the local host name with the DNS suffix appended, if available.
Declaration
public string? LocalhostHostNameWithSuffix { get; set; }
Property Value
Type | Description |
---|---|
string |
LocalhostName
Gets a value indicating whether the IP address corresponds to localhost.
Declaration
public string? LocalhostName { get; }
Property Value
Type | Description |
---|---|
string |
SubnetMask
Gets or sets the subnet mask associated with the IP address.
Declaration
public IPAddress? SubnetMask { get; set; }
Property Value
Type | Description |
---|---|
IPAddress |