DicomObjects.NET Core Documentation
DicomObjects Namespace / DicomQuery Class / QueryDataSet Method



In This Topic
    QueryDataSet Method (DicomQuery)
    In This Topic
    Returns the dataset which would have been used by Find method.
    Syntax
    'Declaration
     
    
    Public Function QueryDataSet() As DicomDataSet
    'Usage
     
    
    Dim instance As DicomQuery
    Dim value As DicomDataSet
     
    value = instance.QueryDataSet()
    public DicomDataSet QueryDataSet()
    public:
    DicomDataSet^ QueryDataSet(); 

    Return Value

    Remarks
    This method returns exactly the same dataset that would have been used for a Find method, which depends on most of the other DicomQuery parameters such as Root, Level etc. The result is suitable for passing to Find, normally after some modification/addition and this method is particularly useful where a slight variation on the “standard” queries generated by Find is required, but the user does not wish to generate a whole new dataset from scratch.
    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