BinaryData.FromString 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
FromString(String) |
Creates a BinaryData instance from a string by converting the string to bytes using the UTF-8 encoding. |
FromString(String, String) |
FromString(String)
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
Creates a BinaryData instance from a string by converting the string to bytes using the UTF-8 encoding.
public:
static BinaryData ^ FromString(System::String ^ data);
public static BinaryData FromString (string data);
static member FromString : string -> BinaryData
Public Shared Function FromString (data As String) As BinaryData
Parameters
- data
- String
The string data.
Returns
A value representing the UTF-8 encoding of data
.
Applies to
FromString(String, String)
- Source:
- BinaryData.cs
- Source:
- BinaryData.cs
public:
static BinaryData ^ FromString(System::String ^ data, System::String ^ mediaType);
public static BinaryData FromString (string data, string? mediaType);
static member FromString : string * string -> BinaryData
Public Shared Function FromString (data As String, mediaType As String) As BinaryData
Parameters
- data
- String
- mediaType
- String
Returns
Applies to
Samarbeid med oss på GitHub
Du finner kilden for dette innholdet på GitHub. Der du også kan opprette og se gjennom problemer og pull-forespørsler. Hvis du vil ha mer informasjon, kan du se vår bidragsyterveiledning.