I have started using Windows Live Writer and wanted to check the Insert Code plugin
This post is to test that
And it works
using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.Collections; using System.ServiceModel; /// <summary> /// Summary description for IServiceHost /// </summary> namespace CCube.ServiceModel.CCubeService { [ServiceContract(SessionMode = SessionMode.Allowed,CallbackContract = typeof(IServiceHostDuplexCallback))] public interface IServiceHost { [OperationContract(IsOneWay = true)] void RegisterTutor(); [OperationContract] string getCurrentException(); [OperationContract] string saveTutorProfile(String name, String contact); [OperationContract] string deleteTutorProfile(String name, String contact); [OperationContract] string getTutorProfile(String name); [OperationContract] string setTutorStatus(String name, String status); [OperationContract] ArrayList getOnlineTutors(); [OperationContract] int getOnlineTutorsCount(); [OperationContract] bool storeStudentDesktopString(String sname, String tname, String invitationString); [OperationContract] bool storeTutorDesktopString(String tname,String invitationString); [OperationContract] bool removeStudentDesktopString(String sname); [OperationContract] bool removeTutorDesktopString(String sname); [OperationContract] ArrayList getOnlineStudents(String tname); [OperationContract] String getTutorDesktopString(String tname); [OperationContract] int getOnlineStudentsCount(String tname); [OperationContract] bool queueStudent(String sname,String tname,int attended); [OperationContract] string getStudentHelp(String tname); [OperationContract] bool setStudentStatus(String sname,int status); [OperationContract] bool setStudentQueueStatus(String sname, int status); } }










I have got that plug-in too…its great…will use it for my code later on
Cool!!!