DicomObjects.NET Core Documentation
DicomObjects Namespace / DicomAssociation Class / Open Method / Open(String,Int32,String,String) Method

Network address (as dotted notation or resolvable name) to which the association is to be made

Port on which remote application is listening

Name to quote for this Application Entity

Name of remote Application Entity




In This Topic
    Open(String,Int32,String,String) Method
    In This Topic
    Open and negotiate a new DICOM Association
    Syntax
    'Declaration
     
    
    Public Overloads Sub Open( _
       ByVal Node As String, _
       ByVal Port As Integer, _
       ByVal CallingAET As String, _
       ByVal CalledAET As String _
    ) 
    'Usage
     
    
    Dim instance As DicomAssociation
    Dim Node As String
    Dim Port As Integer
    Dim CallingAET As String
    Dim CalledAET As String
     
    instance.Open(Node, Port, CallingAET, CalledAET)
    public void Open( 
       string Node,
       int Port,
       string CallingAET,
       string CalledAET
    )

    Parameters

    Node

    Network address (as dotted notation or resolvable name) to which the association is to be made

    Port

    Port on which remote application is listening

    CallingAET

    Name to quote for this Application Entity

    CalledAET

    Name of remote Application Entity

    Remarks

    This method returns, after the connection has been established. If there is a protocol failure, then a trappable DicomException is thrown.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also