Guid.TryWriteBytes Método

Definición

Sobrecargas

Nombre Description
TryWriteBytes(Span<Byte>)

Intenta escribir la instancia de GUID actual en un intervalo de bytes.

TryWriteBytes(Span<Byte>, Boolean, Int32)

TryWriteBytes(Span<Byte>)

Source:
Guid.cs
Source:
Guid.cs
Source:
Guid.cs
Source:
Guid.cs
Source:
Guid.cs

Intenta escribir la instancia de GUID actual en un intervalo de bytes.

public:
 bool TryWriteBytes(Span<System::Byte> destination);
public bool TryWriteBytes(Span<byte> destination);
member this.TryWriteBytes : Span<byte> -> bool
Public Function TryWriteBytes (destination As Span(Of Byte)) As Boolean

Parámetros

destination
Span<Byte>

Cuando este método devuelve, el GUID como un intervalo de bytes.

Devoluciones

true si el GUID se escribe correctamente en el intervalo especificado; false de lo contrario.

Se aplica a

TryWriteBytes(Span<Byte>, Boolean, Int32)

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

Parámetros

destination
Span<Byte>
bigEndian
Boolean
bytesWritten
Int32

Devoluciones

Se aplica a