dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleBinary Structure / TryParse Method
A string, containing a hexadecimal representation of a binary data to convert.
If the conversion was successful, this parameter contains the result OracleBinary value; otherwise it contains Null.

In This Topic
    TryParse Method (OracleBinary)
    In This Topic
    Converts the hexadecimal representation representation of a binary data to OracleBinary.
    Syntax
    'Declaration
     
    Public Shared Function TryParse( _
       ByVal str As String, _
       ByRef value As OracleBinary _
    ) As Boolean
    public static bool TryParse( 
       string str,
       out OracleBinary value
    )

    Parameters

    str
    A string, containing a hexadecimal representation of a binary data to convert.
    value
    If the conversion was successful, this parameter contains the result OracleBinary value; otherwise it contains Null.

    Return Value

    true if the string was converted successfully; otherwise, false.
    Remarks
    The string must contain only hexadecimal characters in order for conversion to be successful.
    See Also