ApiControllerBaseGetClientIdFromCookieOrProvided Method |
Gets the client ID from cookie or from the provided value, which is usually from the query string.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (8.0.2.1001)
Syntaxprotected Nullable<Guid> GetClientIdFromCookieOrProvided(
Nullable<Guid> clientIdFromQueryString
)
Protected Function GetClientIdFromCookieOrProvided (
clientIdFromQueryString As Nullable(Of Guid)
) As Nullable(Of Guid)
protected:
Nullable<Guid> GetClientIdFromCookieOrProvided(
Nullable<Guid> clientIdFromQueryString
)
member GetClientIdFromCookieOrProvided :
clientIdFromQueryString : Nullable<Guid> -> Nullable<Guid>
Parameters
- clientIdFromQueryString
- Type: SystemNullableGuid
The client ID, typically from the query string.
Return Value
Type:
NullableGuidA client ID, or null if we weren't able to get one from anywhere.
See Also