IPAddress.TryFormat Methode

Definition

Überlädt

TryFormat(Span<Char>, Int32)

Versucht, die aktuelle IP-Adresse in die angegebene Spanne zu formatieren.

TryFormat(Span<Byte>, Int32)

Versucht, die aktuelle IP-Adresse in die angegebene Spanne zu formatieren.

TryFormat(Span<Char>, Int32)

Quelle:
IPAddress.cs
Quelle:
IPAddress.cs
Quelle:
IPAddress.cs

Versucht, die aktuelle IP-Adresse in die angegebene Spanne zu formatieren.

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

Parameter

destination
Span<Char>

Nach der Rückgabe dieser Methode wird die IP-Adresse als Zeichenspanne angegeben.

charsWritten
Int32

Die Rückgabe dieser Methode ist die Anzahl der in die Spanne geschriebenen Zeichen.

Gibt zurück

true, wenn die Formatierung erfolgreich war, andernfalls false

Gilt für:

TryFormat(Span<Byte>, Int32)

Quelle:
IPAddress.cs
Quelle:
IPAddress.cs

Versucht, die aktuelle IP-Adresse in die angegebene Spanne zu formatieren.

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

Parameter

utf8Destination
Span<Byte>

Die Spanne, in die die IP-Adresse als Spanne von UTF-8-Bytes geschrieben werden soll.

bytesWritten
Int32

Wenn diese Methode zurückgibt, enthält die Anzahl von Bytes, die in geschrieben utf8Destinationwerden.

Gibt zurück

true, wenn die Formatierung erfolgreich war, andernfalls false

Gilt für: