HttpServerUnRegisterHttpRpcApi 方法 (String, Object) |
卸载一个已经注册的RPC接口,想要卸载指定的接口,此处就需要传入注册时一样的参数
Uninstall a registered RPC interface. If you want to uninstall the specified interface, you need to pass in the same parameters as the registration
命名空间:
HslCommunication.Enthernet
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public void UnRegisterHttpRpcApi(
string api,
Object obj
)
Public Sub UnRegisterHttpRpcApi (
api As String,
obj As Object
)
public:
void UnRegisterHttpRpcApi(
String^ api,
Object^ obj
)
member UnRegisterHttpRpcApi :
api : string *
obj : Object -> unit
参数
- api
- 类型:SystemString
前置的接口信息,可以理解为MVC模式的控制器 - obj
- 类型:SystemObject
原始对象信息,也可以是类型对象本身
参见