SessionController.IPAddress Method |
Sets the IP address which should be associated with the specified session.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpPutAttribute("IPAddress")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
public ActionResult IPAddress(
[FromBodyAttribute] SetSessionIPAddressOptions options,
Guid? sessionId = null
)
<HttpPutAttribute("IPAddress")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(440)>
Public Function IPAddress (
<FromBodyAttribute> options As SetSessionIPAddressOptions,
Optional sessionId As Guid? = Nothing
) As ActionResult
public:
[HttpPutAttribute(L"IPAddress")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
ActionResult^ IPAddress(
[FromBodyAttribute] SetSessionIPAddressOptions^ options,
Nullable<Guid> sessionId = nullptr
)
[<HttpPutAttribute("IPAddress")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(440)>]
member IPAddress :
[<FromBodyAttribute>] options : SetSessionIPAddressOptions *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult
Parameters
- options
- Type: Dundas.BI.WebApi.Models.SetSessionIPAddressOptions
The options with the information to set the IP address for the session. - sessionId (Optional)
- Type: System.Nullable<Guid>
The ID of a session with administrative privileges.
Return Value
Type:
ActionResult
See Also