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

The web address of the image to read.

Example

In This Topic
    ReadURL Method (DicomImage)
    In This Topic
    Reads 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 image 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
    DicomImage image = new DicomImage();
    string dicomURL = "https://www.xyz.com/image.dcm";
    image.ReadURL(dicomURL);
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also