i can regist servicestack register service like
var responseX =
client.Post(new Register
{
UserName = sicil.Text,
Password = Password.Text,
FirstName = adX.Text,
LastName = soyadX.Text,
Email = sicil.Text,
AutoLogin = false,
Continue = "",
DisplayName =adX.Text+ " "+ soyadX.Text
});
and also i can register from rest services, but i want only auth users can register or apply
is there something way to
[Auth] Register
thanks
You can dynamically add attributes to any
Type
orProperty
in ServiceStack with the runtime attribute API which lets you modify the attributes of any built-in Services, e.g: