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
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
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
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
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
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET