BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Error |
Explanation |
'HttpWebRequest' does not contain a definition for 'GetResponse' and no extension method 'GetResponse' accepting a first argument of type 'HttpWebRequest' could be found (are you missing a using directive or an assembly reference?) |
GetResponse() is not supported in PCL versions. You need to use the Async version, GetResponseAsync() to get response from HttpWebRequest. We have tried the “GetResponseAsync” to get reponse using URI string provided in your code snippet. And we have faced error while getting response due to request of URI does not have any response. So kindly use a proper URI string to create request and to get response successively. Note: This error not relevant to DocIO portable libraries. |
Argument 1: cannot convert from 'string' to 'System.IO.Stream' |
Essential DocIO does not provide any public API to “Save” the Word document to specified file in Xamarin. Alternatively you can use “Save” method with “Stream” overload to save the Word document using DocIO and then can save as file. Please refer following UG links to know more about how to load and save Word document using DocIO in Xamarin. Open Word document Save Word document |