DicomObjects.NET.V8
DicomObjects Namespace / DicomQuery Class / QueryDataSet Method



In This Topic
    QueryDataSet Method
    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: .NET CLR 4.0 or higher

    See Also