HttpServerRegisterHttpRpcApi 方法 (String, Object) |
注册一个RPC的服务接口,可以指定当前的控制器名称,以及提供RPC服务的原始对象
Register an RPC service interface, you can specify the current controller name, and the original object that provides the RPC service
命名空间:
HslCommunication.Enthernet
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public void RegisterHttpRpcApi(
string api,
Object obj
)
Public Sub RegisterHttpRpcApi (
api As String,
obj As Object
)
public:
void RegisterHttpRpcApi(
String^ api,
Object^ obj
)
member RegisterHttpRpcApi :
api : string *
obj : Object -> unit
参数
- api
- 类型:SystemString
前置的接口信息,可以理解为MVC模式的控制器 - obj
- 类型:SystemObject
原始对象信息,也可以是类型对象本身
参见