MachineLearningController.GetPluginJSHandler Method |
Retrieve the Javascript handlers of the active machine learning provider.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpGetAttribute("PluginJSHandler")]
[ProducesResponseTypeAttribute(404)]
[ProducesResponseTypeAttribute(503)]
public ActionResult GetPluginJSHandler(
Guid pluginId,
Guid? sessionId = null
)
<HttpGetAttribute("PluginJSHandler")>
<ProducesResponseTypeAttribute(404)>
<ProducesResponseTypeAttribute(503)>
Public Function GetPluginJSHandler (
pluginId As Guid,
Optional sessionId As Guid? = Nothing
) As ActionResult
public:
[HttpGetAttribute(L"PluginJSHandler")]
[ProducesResponseTypeAttribute(404)]
[ProducesResponseTypeAttribute(503)]
ActionResult^ GetPluginJSHandler(
Guid pluginId,
Nullable<Guid> sessionId = nullptr
)
[<HttpGetAttribute("PluginJSHandler")>]
[<ProducesResponseTypeAttribute(404)>]
[<ProducesResponseTypeAttribute(503)>]
member GetPluginJSHandler :
pluginId : Guid *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult
Parameters
- pluginId
- Type: System.Guid
The machine learning plugin ID. - sessionId (Optional)
- Type: System.Nullable<Guid>
The session ID.
Return Value
Type:
ActionResultThe operation completed successfully. The payload contains a
ContentResult object representing the dictionary of the name of Dibby plugin and corresponding handler javascript.
See Also