DataProviderController.GetStructureCustomConfigurationUI Method |
Gets the custom configuration UI for the specified data provider's structure.
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("StructureCustomConfigurationUI/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
[ProducesResponseTypeAttribute(500)]
public ActionResult<string> GetStructureCustomConfigurationUI(
Guid id,
string contentType,
Guid? sessionId = null
)
<HttpGetAttribute("StructureCustomConfigurationUI/{id}")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(410)>
<ProducesResponseTypeAttribute(440)>
<ProducesResponseTypeAttribute(500)>
Public Function GetStructureCustomConfigurationUI (
id As Guid,
contentType As String,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of String)
public:
[HttpGetAttribute(L"StructureCustomConfigurationUI/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
[ProducesResponseTypeAttribute(500)]
ActionResult<String^>^ GetStructureCustomConfigurationUI(
Guid id,
String^ contentType,
Nullable<Guid> sessionId = nullptr
)
[<HttpGetAttribute("StructureCustomConfigurationUI/{id}")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(410)>]
[<ProducesResponseTypeAttribute(440)>]
[<ProducesResponseTypeAttribute(500)>]
member GetStructureCustomConfigurationUI :
id : Guid *
contentType : string *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<string>
Parameters
- id
- Type: System.Guid
The ID of the data provider to get the custom UI for. - contentType
- Type: System.String
The type of the content to get the UI for. For example: text/html. - sessionId (Optional)
- Type: System.Nullable<Guid>
The current session ID.
Return Value
Type:
ActionResult<String>The operation completed successfully. The payload contains a
String object.
See Also