You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
923 B
923 B
LINGYUN.Abp.MessageService.HttpApi.Client
消息服务 HTTP API 客户端模块。
功能特性
- 提供消息服务的 HTTP 客户端代理
- 自动注册 HTTP 客户端代理服务
依赖模块
- LINGYUN.Abp.MessageService.Application.Contracts
AbpHttpClientModule
配置使用
- 首先,需要安装 LINGYUN.Abp.MessageService.HttpApi.Client 到你的项目中:
dotnet add package LINGYUN.Abp.MessageService.HttpApi.Client
- 添加
AbpMessageServiceHttpApiClientModule到你的模块的依赖列表:
[DependsOn(typeof(AbpMessageServiceHttpApiClientModule))]
public class YourModule : AbpModule
{
}
- 配置远程服务地址:
{
"RemoteServices": {
"AbpMessageService": {
"BaseUrl": "http://your-service-url"
}
}
}