servicestack kestrel c# how can I hide/show endpoints in ui #138
-
Hello everybody, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
You can add |
Beta Was this translation helpful? Give feedback.
-
I tried to add 2 attributes (of 2 DTOs out of 5 created) keeping and removing [ExcludeMetadata]. Keeping it does not show me any endpoint among the 5 created (DTO), removing it all 5 endpoints appear. I added: |
Beta Was this translation helpful? Give feedback.
-
Thanks to all the right answer is: public class AppHost : AppHostBase
} |
Beta Was this translation helpful? Give feedback.
Thanks to all the right answer is:
public class AppHost : AppHostBase
{
public AppHost() : base("Your Service Name", typeof(AppHost).Assembly) { }
}