Sharepoint and REST - WebClient - Add Attachment to List Item
Problem Definition Add attachment to SharePoint list item using REST API and WebClient. Prerequisites In order to effectively deal with the data in the SharePoint List I will recommend using Newtonsoft.JSON that makes dealing with List data a lot easier. In order to get JSON plugin go to NuGet and search for JSON.NET or NEWTONSOFT SharePointAndRest_WebClient.cs class dealing with SharePoint Data posting: Code Help /// <summary> /// Implement Sharepoint Functionality using WebClient /// </summary> public class SharePointAndRest_WebClient : IDisposable { private WebClient webClient; public Uri WebUri { get; private set; } public SharePointAndRest_WebClient(Uri webUri) { WebUri = webUri; } public st...