IPAddress.TryFormat 方法

定义

重载

名称 说明
TryFormat(Span<Char>, Int32)

尝试将当前 IP 地址的格式设置为所提供的范围。

TryFormat(Span<Byte>, Int32)

尝试将当前 IP 地址的格式设置为所提供的范围。

TryFormat(Span<Char>, Int32)

Source:
IPAddress.cs
Source:
IPAddress.cs
Source:
IPAddress.cs
Source:
IPAddress.cs
Source:
IPAddress.cs

尝试将当前 IP 地址的格式设置为所提供的范围。

public:
 bool TryFormat(Span<char> destination, [Runtime::InteropServices::Out] int % charsWritten);
public bool TryFormat(Span<char> destination, out int charsWritten);
member this.TryFormat : Span<char> * int -> bool
Public Function TryFormat (destination As Span(Of Char), ByRef charsWritten As Integer) As Boolean

参数

destination
Span<Char>

此方法返回时,IP 地址作为字符范围。

charsWritten
Int32

此方法返回时,写入范围中的字符数。

返回

true 如果格式设置成功,则为否则,为 false.

适用于

TryFormat(Span<Byte>, Int32)

Source:
IPAddress.cs
Source:
IPAddress.cs
Source:
IPAddress.cs
Source:
IPAddress.cs

尝试将当前 IP 地址的格式设置为所提供的范围。

public:
 bool TryFormat(Span<System::Byte> utf8Destination, [Runtime::InteropServices::Out] int % bytesWritten);
public bool TryFormat(Span<byte> utf8Destination, out int bytesWritten);
member this.TryFormat : Span<byte> * int -> bool
Public Function TryFormat (utf8Destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean

参数

utf8Destination
Span<Byte>

要将 IP 地址写入到的跨度为 UTF-8 字节的范围。

bytesWritten
Int32

此方法返回时,包含写入到的 utf8Destination字节数。

返回

true 如果格式设置成功,则为否则,为 false.

适用于