Browse Forum Posts by Tags
-
Hi Guys, I am attempting to create a cs2007 user as part of a job and I am getting the following exception: Object reference not set to an instance of an object and my code looks like this: public class ImportUsersJob : ITask { public void Execute(System.Xml. XmlNode node) { User user; user = new User...
-
Thanks for the post. Just to clarify one thing, if you want this to work "as is" with no imports, it needs to be as follows: CommunityServer.Components.User u = new CommunityServer.Components.User(); u. Username = "Scott"; u. Password = "Password"; u.Email = " CommunityServer...