adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / ConnectionDescriptor Class / Parse Method
The connection string to parse (created by ToString)


In This Topic
    Parse Method
    In This Topic
    Parses a connection string.
    Syntax
    'Declaration
     
    
    <CanBeNullAttribute()>
    Public Shared Function Parse( _
       ByVal connectionString As String _
    ) As ConnectionDescriptor
    [CanBeNull()]
    public static ConnectionDescriptor Parse( 
       string connectionString
    )
    [CanBeNull()]
    public:
    static ConnectionDescriptor^ Parse( 
       String^ connectionString
    ) 

    Parameters

    connectionString
    The connection string to parse (created by ToString)

    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