Also, you can use a WebClient:

var wc = new WebClient();
wc.UploadFile(UrlToPost, PathToFile);

With your example data UrlToPost will be "https://server.com"; and if the
file is in the same dir as the application PathToFile will be
"WellFormed.xml", else it must be an absolute path.

Cheers.

2014-10-08 13:17 GMT+02:00 Edward Ned Harvey (mono) <
edward.harvey.m...@clevertrove.com>:

> > From: mono-list-boun...@lists.ximian.com [mailto:mono-list-
> > boun...@lists.ximian.com] On Behalf Of Alf Stockton
> >
> > curl -X POST https://server.com -Hcontent-type:application/xml -d
> > @WellFormed.xml
>
> Oh, um -
>
> You might need to escape some characters, for example:
> "C:\\Users\\eharvey\\myprogram.exe blah blah"
>
> Or mark it as a string literal:
> @"C:\Users\eharvey\myprogram.exe blah blah"
> _______________________________________________
> Mono-list maillist  -  Mono-list@lists.ximian.com
> http://lists.ximian.com/mailman/listinfo/mono-list
>
_______________________________________________
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to