BinaryData.FromBytes Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
FromBytes(Byte[]) |
Creates a BinaryData instance by wrapping the provided byte array. |
FromBytes(ReadOnlyMemory<Byte>) |
Creates a BinaryData instance by wrapping the provided ReadOnlyMemory<T>. |
FromBytes(Byte[], String) | |
FromBytes(ReadOnlyMemory<Byte>, String) |
FromBytes(Byte[])
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
Creates a BinaryData instance by wrapping the provided byte array.
public:
static BinaryData ^ FromBytes(cli::array <System::Byte> ^ data);
public static BinaryData FromBytes (byte[] data);
static member FromBytes : byte[] -> BinaryData
Public Shared Function FromBytes (data As Byte()) As BinaryData
Parameters
- data
- Byte[]
The byte array to wrap.
Returns
A wrapper over data
.
Applies to
FromBytes(ReadOnlyMemory<Byte>)
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
Creates a BinaryData instance by wrapping the provided ReadOnlyMemory<T>.
public:
static BinaryData ^ FromBytes(ReadOnlyMemory<System::Byte> data);
public static BinaryData FromBytes (ReadOnlyMemory<byte> data);
static member FromBytes : ReadOnlyMemory<byte> -> BinaryData
Public Shared Function FromBytes (data As ReadOnlyMemory(Of Byte)) As BinaryData
Parameters
- data
- ReadOnlyMemory<Byte>
The byte data to wrap.
Returns
A wrapper over data
.
Applies to
FromBytes(Byte[], String)
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
public:
static BinaryData ^ FromBytes(cli::array <System::Byte> ^ data, System::String ^ mediaType);
public static BinaryData FromBytes (byte[] data, string? mediaType);
static member FromBytes : byte[] * string -> BinaryData
Public Shared Function FromBytes (data As Byte(), mediaType As String) As BinaryData
Parameters
- data
- Byte[]
- mediaType
- String
Returns
Applies to
FromBytes(ReadOnlyMemory<Byte>, String)
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
public:
static BinaryData ^ FromBytes(ReadOnlyMemory<System::Byte> data, System::String ^ mediaType);
public static BinaryData FromBytes (ReadOnlyMemory<byte> data, string? mediaType);
static member FromBytes : ReadOnlyMemory<byte> * string -> BinaryData
Public Shared Function FromBytes (data As ReadOnlyMemory(Of Byte), mediaType As String) As BinaryData
Parameters
- data
- ReadOnlyMemory<Byte>
- mediaType
- String
Returns
Applies to
Spolupracujte s námi na GitHubu
Zdroj tohoto obsahu najdete na GitHubu, kde můžete také vytvářet a kontrolovat problémy a žádosti o přijetí změn. Další informace najdete v našem průvodci pro přispěvatele.