CustomAttributesController.CustomAttributeReferences Method |
Gets the accounts, groups, and file system entities that reference the specified custom attribute.
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("CustomAttributeReferences/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<CustomAttributeReferencesData> CustomAttributeReferences(
Guid id,
Guid? sessionId = null
)
<HttpGetAttribute("CustomAttributeReferences/{id}")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(410)>
<ProducesResponseTypeAttribute(440)>
Public Function CustomAttributeReferences (
id As Guid,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of CustomAttributeReferencesData)
public:
[HttpGetAttribute(L"CustomAttributeReferences/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
ActionResult<CustomAttributeReferencesData^>^ CustomAttributeReferences(
Guid id,
Nullable<Guid> sessionId = nullptr
)
[<HttpGetAttribute("CustomAttributeReferences/{id}")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(410)>]
[<ProducesResponseTypeAttribute(440)>]
member CustomAttributeReferences :
id : Guid *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<CustomAttributeReferencesData>
Parameters
- id
- Type: System.Guid
The custom attribute ID. - sessionId (Optional)
- Type: System.Nullable<Guid>
The current session ID.
Return Value
Type:
ActionResult<CustomAttributeReferencesData>The operation completed successfully. The payload contains an
CustomAttributeReferencesData object.
See Also