DicomObjects.NET.V8
DicomObjects Namespace / DicomPrint Class / Connection Property



In This Topic
    Connection Property
    In This Topic
    Reference to the underlying DicomAssociation object used by a DicomPrint object
    Syntax
    'Declaration
     
    Public ReadOnly Property Connection As DicomAssociation
    'Usage
     
    Dim instance As DicomPrint
    Dim value As DicomAssociation
     
    value = instance.Connection
    public DicomAssociation Connection {get;}
    public:
    property DicomAssociation^ Connection {
       DicomAssociation^ get();
    }

    Property Value

    The underlying DicomAssociation
    Remarks
    This property is useful when extra operations are required over a print association, and enables the user to use the simplified interface provided by DicomPrint object, yet still have flexibility to make arbitrary requests. In particular, it can be used to N-GET the well-known printer instance during an association to check for the printer's status.
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also