DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomDataSet Class / ReadURL Method

The web address of the DataSet to read.

Example

In This Topic
    ReadURL Method (DicomDataSet)
    In This Topic
    Reads DataSet from Web Address
    Syntax
    'Declaration
     
    
    Public Sub ReadURL( _
       ByVal URL As System.String _
    ) 
    public void ReadURL( 
       System.string URL
    )

    Parameters

    URL

    The web address of the DataSet to read.

    Remarks

    A valid web address should be provided by the user. This method does not support progressive downloading (JPIP support is to be implemented).

    Example
    DicomDataSet ds = new DicomDataSet();
    string dicomURL = "https://www.xyz.com/image.dcm";
    ds.ReadURL(dicomURL);
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also