GeoStreamRepositoryAuthenticationMode Enumeration | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Possible GeoStream authentication modes.
Namespace:
Telogis.GeoBase.Repositories
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public enum AuthenticationMode
Public Enumeration AuthenticationMode
Members
| Member name | Value | Description |
---|
| Cookie | 1 |
Send the authentication token as a cookie. Appropriate in most cases.
|
| Url | 2 |
Send the authentication token as part of the query string for the request. Appropriate for servers that don't support cookies.
Url authentication can be used instead
|
| UnauthenticatedTileRequests | 4 |
Don't include the authentication token for tile requests. Should be used in conjunction with Cookie or Url authentication for non-tile requests,
and can only be used for servers that have been specifically configured not to require authenticated tile requests.
|
See Also