[UriTemplate("/")]
public class Index : IGet, IOutput<string>
{
public Status Get()
{
Output = "Hello World";
return 200;
}
public string Output { get; private set; }
}
--
You received this message because you are subscribed to the Google Groups "SimpleWeb Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to simpleweb-use...@googlegroups.com.
To post to this group, send email to simplew...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/simpleweb-users/0748112a-6bee-46d8-a211-e3166c71b2d4%40googlegroups.com?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
I did but it didnt seem to update my web.config. Anyway I can now add it manually based on the code above.
Thanks