ApiControllerBaseGetSessionIdFromCookieOrProvided Method |
Gets the session 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> GetSessionIdFromCookieOrProvided(
Nullable<Guid> sessionIdFromQueryString
)
Protected Function GetSessionIdFromCookieOrProvided (
sessionIdFromQueryString As Nullable(Of Guid)
) As Nullable(Of Guid)
protected:
Nullable<Guid> GetSessionIdFromCookieOrProvided(
Nullable<Guid> sessionIdFromQueryString
)
member GetSessionIdFromCookieOrProvided :
sessionIdFromQueryString : Nullable<Guid> -> Nullable<Guid>
Parameters
- sessionIdFromQueryString
- Type: SystemNullableGuid
The session ID, typically from the query string.
Return Value
Type:
NullableGuidA session ID, or null if we weren't able to get one from anywhere.
See Also