Independentsoft
- any library, any programming language
Home
Purchase
Support
Company
Contact
Exchange Web Services .NET
>
Tutorial
> Create note
The following example shows you how to create a note.
C# example
using System; using System.Net; using Independentsoft.Exchange; namespace Sample { class Program { static void Main(string[] args) { NetworkCredential credential = new NetworkCredential("username", "password"); Service service = new Service("https://myserver/ews/Exchange.asmx", credential); try { Note note = new Note(); note.Subject = "My test note"; note.Body = new Body("My test note"); note.Color = NoteColor.Green; note.IconColor = NoteColor.Green; note.Height = 200; note.Width = 300; note.Left = 400; note.Top = 200; ItemId itemId = service.CreateItem(note, StandardFolder.Notes); } catch (ServiceRequestException ex) { Console.WriteLine("Error: " + ex.Message); Console.WriteLine("Error: " + ex.XmlMessage); Console.Read(); } catch (WebException ex) { Console.WriteLine("Error: " + ex.Message); Console.Read(); } } } }
VB example
Imports System Imports System.Net Imports Independentsoft.Exchange Namespace Sample Class Module1 Shared Sub Main(ByVal args As String()) Dim credential As New NetworkCredential("username", "password") Dim service As New Service("https://myserver/ews/Exchange.asmx", credential) Try Dim note As New Note() note.Subject = "My test note" note.Body = New Body("My test note") note.Color = NoteColor.Green note.IconColor = NoteColor.Green note.Height = 200 note.Width = 300 note.Left = 400 note.Top = 200 Dim itemId As ItemId = service.CreateItem(note, StandardFolder.Notes) Catch ex As ServiceRequestException Console.WriteLine("Error: " + ex.Message) Console.WriteLine("Error: " + ex.XmlMessage) Console.Read() Catch ex As WebException Console.WriteLine("Error: " + ex.Message) Console.Read() End Try End Sub End Class End Namespace
Need help? Ask our developers:
Name*
Email*
Message*