MediaTypeHeaderValue.TryParse(String, MediaTypeHeaderValue) 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.
Determines whether a string is valid MediaTypeHeaderValue information.
public:
static bool TryParse(System::String ^ input, [Runtime::InteropServices::Out] System::Net::Http::Headers::MediaTypeHeaderValue ^ % parsedValue);
public static bool TryParse (string input, out System.Net.Http.Headers.MediaTypeHeaderValue parsedValue);
public static bool TryParse (string? input, out System.Net.Http.Headers.MediaTypeHeaderValue? parsedValue);
static member TryParse : string * MediaTypeHeaderValue -> bool
Public Shared Function TryParse (input As String, ByRef parsedValue As MediaTypeHeaderValue) As Boolean
Parameters
- input
- String
The string to validate.
- parsedValue
- MediaTypeHeaderValue
The MediaTypeHeaderValue version of the string.
Returns
true
if input
is valid MediaTypeHeaderValue information; otherwise, false
.
Applies to
Співпраця з нами на GitHub
Джерело цього вмісту можна знайти на GitHub, де також можна створювати й переглядати запитання та запити на внесення змін. Докладні відомості наведено в нашому посібнику для співавторів.