Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace:  System.Net.Http.Headers
Assembly:  System.Net.Http (in System.Net.Http.dll)
Syntax
'Declaration
Public Shared Function TryParse ( _
    input As String, _
    <OutAttribute> ByRef parsedValue As ContentDispositionHeaderValue _
) As Boolean
'Usage
Dim input As String 
Dim parsedValue As ContentDispositionHeaderValue 
Dim returnValue As Boolean 
returnValue = ContentDispositionHeaderValue.TryParse(input, _
    parsedValue)
public static bool TryParse(
    string input,
    out ContentDispositionHeaderValue parsedValue
)
public:
static bool TryParse(
    String^ input, 
    [OutAttribute] ContentDispositionHeaderValue^% parsedValue
)
static member TryParse : 
        input:string * 
        parsedValue:ContentDispositionHeaderValue byref -> bool
public static function TryParse(
    input : String, 
    parsedValue : ContentDispositionHeaderValue
) : boolean
Parameters
- input
 Type: System.String
- parsedValue
 Type: System.Net.Http.Headers.ContentDispositionHeaderValue
Return Value
Type: System.Boolean