بنقرة واحدة
servicestack-typed-clients
Leverages typed ServiceStack clients and DTO reuse across boundaries.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Leverages typed ServiceStack clients and DTO reuse across boundaries.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Designs stable, discoverable APIs using routes, metadata, and versioning conventions.
Implements authentication using ServiceStack Auth Providers and session handling.
Applies role-, permission-, and ownership-based authorization using ServiceStack idioms.
Implements AutoQuery services, custom filters, and permission-aware querying.
Designs request/response DTOs using DTO-first, message-based ServiceStack conventions.
Controls OpenAPI / metadata exposure without compromising ServiceStack-first design.
استنادا إلى تصنيف SOC المهني
| name | servicestack-typed-clients |
| description | Leverages typed ServiceStack clients and DTO reuse across boundaries. |
Typed clients provide a type-safe way to consume ServiceStack APIs without manual URL construction or code generation.
ServiceStack provides clients for many languages:
JsonServiceClient, JsonHttpClient.JsonServiceClient.var client = new JsonServiceClient(BaseUrl);
var response = await client.GetAsync(new GetCustomer { Id = 1 });
ServiceModel) as the server.[Route], IReturn<T>).Clients automatically handle WebServiceException and provide access to the ResponseStatus for structured error reporting.
*Async methods for better performance and scalability.ResponseStatus to provide meaningful feedback to users.