adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / ConnectionDescriptor Class / Parse Method

In This Topic
    Parse Method
    In This Topic
    Parses a connection string.
    Syntax
    'Declaration
     
    
    Public Shared Function Parse( _
       ByVal target As String _
    ) As ConnectionDescriptor
    public static ConnectionDescriptor Parse( 
       string target
    )

    Parameters

    target

    Return Value

    A ConnectionDescriptor containing information parsed from the target, or null if the target cannot be parsed.
    Remarks
    This method parses a user-entered target address. Following are valid address forms: * servername * servername:port * servername:port\instance * servername\instance * [ipv6 address]:port * [ipv6 address]:port\instance Deprecated formats still recognized by Parse: * servername,port * servername\instance,port * servername,port\instance Any of these formats can also be followed by "," and additional configuration options
    See Also