adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / ConnectionDescriptor Class / ConnectionDescriptor Constructor / ConnectionDescriptor Constructor(String,Nullable<Int32>,String)
The name or IP address of the computer to connect to. Specify a null reference (Nothing in Visual Basic), an empty string, ".", or "localhost" to connect to the local computer
The port to connect to. Specify a null reference (Nothing in Visual Basic) to use the default port (3760).
The instance to connect to. Specify a null reference (Nothing in Visual Basic) or an empty string to connect to the default instance.


In This Topic
    ConnectionDescriptor Constructor(String,Nullable<Int32>,String)
    In This Topic
    Creates a new connection descriptor
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal server As String, _
       ByVal port As Nullable(Of Integer), _
       ByVal instance As String _
    )
    public ConnectionDescriptor( 
       string server,
       Nullable<int> port,
       string instance
    )
    public:
    ConnectionDescriptor( 
       String^ server,
       Nullable<int> port,
       String^ instance
    )

    Parameters

    server
    The name or IP address of the computer to connect to. Specify a null reference (Nothing in Visual Basic), an empty string, ".", or "localhost" to connect to the local computer
    port
    The port to connect to. Specify a null reference (Nothing in Visual Basic) to use the default port (3760).
    instance
    The instance to connect to. Specify a null reference (Nothing in Visual Basic) or an empty string to connect to the default instance.
    See Also