I developed some integration between Jira and TFS.
Some bugs in TFS have image in Description like this:
<span style="color:black;font-family:"Segoe UI",sans-serif;font-size:9pt;"><img style="width:606px;" src="http://server:8080/tfs/IT_Systems/WorkItemTracking/v1.0/AttachFileHandler.ashx?FileNameGuid=7d796b11-588f-4266-a783-8d3fa61cb4bd&FileName=temp1465385989194.png"><br> </span>
How can I download this image programmatically using c#?
I know I should parse HTML and so on. But problem is I don't know how to extract data from URL.
In TFS web part I select image, copy it, open for example Paint, past image and save it as jpg-file.
I need the same in my c# code.
Can anyone help me?