Condividi tramite


Utf8.TryWrite Metodo

Definizione

Overload

TryWrite(Span<Byte>, Utf8+TryWriteInterpolatedStringHandler, Int32)

Scrive la stringa interpolata specificata nell'intervallo di byte UTF-8.

TryWrite(Span<Byte>, IFormatProvider, Utf8+TryWriteInterpolatedStringHandler, Int32)

Scrive la stringa interpolata specificata nell'intervallo di byte UTF-8.

TryWrite(Span<Byte>, Utf8+TryWriteInterpolatedStringHandler, Int32)

Origine:
Utf8.cs
Origine:
Utf8.cs

Scrive la stringa interpolata specificata nell'intervallo di byte UTF-8.

public:
 static bool TryWrite(Span<System::Byte> destination, System::Text::Unicode::Utf8::TryWriteInterpolatedStringHandler % handler, [Runtime::InteropServices::Out] int % bytesWritten);
public static bool TryWrite (Span<byte> destination, ref System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler handler, out int bytesWritten);
static member TryWrite : Span<byte> * TryWriteInterpolatedStringHandler * int -> bool
Public Shared Function TryWrite (destination As Span(Of Byte), ByRef handler As Utf8.TryWriteInterpolatedStringHandler, ByRef bytesWritten As Integer) As Boolean

Parametri

destination
Span<Byte>

Intervallo a cui deve essere formattata la stringa interpolata.

handler
Utf8.TryWriteInterpolatedStringHandler

Stringa interpolata.

bytesWritten
Int32

Quando questo metodo restituisce, contiene il numero di caratteri scritti nell'intervallo.

Restituisce

true se l'intera stringa interpolata potrebbe essere formattata correttamente; in caso contrario, false.

Si applica a

TryWrite(Span<Byte>, IFormatProvider, Utf8+TryWriteInterpolatedStringHandler, Int32)

Origine:
Utf8.cs
Origine:
Utf8.cs

Scrive la stringa interpolata specificata nell'intervallo di byte UTF-8.

public:
 static bool TryWrite(Span<System::Byte> destination, IFormatProvider ^ provider, System::Text::Unicode::Utf8::TryWriteInterpolatedStringHandler % handler, [Runtime::InteropServices::Out] int % bytesWritten);
public static bool TryWrite (Span<byte> destination, IFormatProvider? provider, ref System.Text.Unicode.Utf8.TryWriteInterpolatedStringHandler handler, out int bytesWritten);
static member TryWrite : Span<byte> * IFormatProvider * TryWriteInterpolatedStringHandler * int -> bool
Public Shared Function TryWrite (destination As Span(Of Byte), provider As IFormatProvider, ByRef handler As Utf8.TryWriteInterpolatedStringHandler, ByRef bytesWritten As Integer) As Boolean

Parametri

destination
Span<Byte>

Intervallo a cui deve essere formattata la stringa interpolata.

provider
IFormatProvider

Oggetto che fornisce informazioni di formattazione specifiche delle impostazioni cultura.

handler
Utf8.TryWriteInterpolatedStringHandler

Stringa interpolata.

bytesWritten
Int32

Quando questo metodo restituisce, contiene il numero di caratteri scritti nell'intervallo.

Restituisce

true se l'intera stringa interpolata potrebbe essere formattata correttamente; in caso contrario, false.

Si applica a