C# 클래스 org.GraphDefined.Vanaheimr.Hermod.IPAddressHelper

IP address helpers.
파일 보기 프로젝트 열기: Vanaheimr/Hermod 1 사용 예제들

공개 메소드들

메소드 설명
Build ( Byte ByteArray ) : IIPAddress

Create a new IIPAddress based on the given byte array representation.

Build ( System IPAddress ) : IIPAddress

Create a new IIPAddress based on the given System.Net.IPAddress.

Parse ( String IPAddressString ) : IIPAddress

Parsed the given string representation into a new IIPAddress.

TryParse ( String IPAddressString, IIPAddress &IPAddress ) : System.Boolean

Parsed the given string representation into a new IIPAddress.

메소드 상세

Build() 공개 정적인 메소드

Create a new IIPAddress based on the given byte array representation.
public static Build ( Byte ByteArray ) : IIPAddress
ByteArray Byte A byte representation of an IPAddress.
리턴 IIPAddress

Build() 공개 정적인 메소드

Create a new IIPAddress based on the given System.Net.IPAddress.
public static Build ( System IPAddress ) : IIPAddress
IPAddress System A System.Net.IPAddress.
리턴 IIPAddress

Parse() 공개 정적인 메소드

Parsed the given string representation into a new IIPAddress.
public static Parse ( String IPAddressString ) : IIPAddress
IPAddressString String An IPAddress string representation.
리턴 IIPAddress

TryParse() 공개 정적인 메소드

Parsed the given string representation into a new IIPAddress.
public static TryParse ( String IPAddressString, IIPAddress &IPAddress ) : System.Boolean
IPAddressString String A string representation of an IP address.
IPAddress IIPAddress The parsed IP address.
리턴 System.Boolean