'DeclarationPublic Sub ReadURL( _ ByVal URL As System.String _ )
public void ReadURL( System.string URL )
Parameters
- URL
The web address of the DataSet to read.
The web address of the DataSet to read.
'DeclarationPublic Sub ReadURL( _ ByVal URL As System.String _ )
public void ReadURL( System.string URL )
The web address of the DataSet to read.
A valid web address should be provided by the user. This method does not support progressive downloading (JPIP support is to be implemented).
DicomDataSet ds = new DicomDataSet(); string dicomURL = "https://www.xyz.com/image.dcm"; ds.ReadURL(dicomURL);