![]() |
LuciadCPillar C# 2024.1.02
|
Initializer
for the global Environment
needed by this library.
More...
Public Member Functions | |
void | Dispose () |
Luciad.Environment | Initialize () |
Create and initialize an Environment . More... | |
Luciad.Environment.Initializer | ShouldInitializeCurl (bool shouldInitializeCurl) |
Specify whether this library should initialize the curl library. More... | |
Luciad.Environment.Initializer | ShouldInitializeGdal (bool shouldInitializeGdal) |
Specify whether this library should initialize the gdal library. More... | |
Luciad.Environment.Initializer | WithCredentialsProvider (Luciad.Loaders.ICredentialsProvider credentialsProvider, bool wrapWithCache=true) |
Specify that the given credential provider should be used. More... | |
Luciad.Environment.Initializer | WithLicenseText (string licenseText) |
Specify the content of the LuciadCPillar license file. More... | |
Initializer | WithLoggingBackend (Luciad.ILoggingBackend loggingBackend) |
Specify that the given logging backend should be used. More... | |
Luciad.Environment.Initializer | WithProxySelector (Luciad.Loaders.IProxySelector proxySelector) |
Specify that the given proxy selector should be used. More... | |
Luciad.Environment.Initializer | WithResourcePath (string resourcePath) |
Specify where LuciadCPillar can look for its internal resource. More... | |
Initializer
for the global Environment
needed by this library.
It allows you to configure what and how some things are to be initialized.
|
inline |
|
inline |
Create and initialize an Environment
.
Environment
Luciad.LicenseException | when the license text is invalid. |
|
inline |
Specify whether this library should initialize the curl library.
curl is used for network requests done by this library. It contains global initialization and cleanup routines that should be performed only once during the application lifetime. If you set this to false
, but want to use network access-based functionality from this library, you will have to initialize curl yourself.
shouldInitializeCurl | true to initialize curl, false not to do so, defaults to true |
|
inline |
Specify whether this library should initialize the gdal library.
gdal is used for reading raster data. It contains global routines that should be performed only once during the application lifetime. If you set this to false
, but want to use this library, you will have to initialize gdal yourself.
shouldInitializeGdal | true to initialize gdal, false not to do so, defaults to true |
|
inline |
Specify that the given credential provider should be used.
This allows you to connect to network resources requiring authentication.
credentialsProvider | the credential provider to use |
wrapWithCache | whether you want the credential provider to be wrapped with a caching instance. If not, caching is the responsibility of the credentials provider. The default value is true . |
|
inline |
Specify the content of the LuciadCPillar license file.
It is up to the caller to load the license content.
licenseText | the content of the license file for LuciadCPillar. |
|
inline |
Specify that the given logging backend should be used.
If this function is never called by the program, a default implementation is used which writes information to the standard output streams.
loggingBackend | the backend to use |
|
inline |
Specify that the given proxy selector should be used.
This allows you to connect to network resources which require use of a proxy.
proxySelector | the proxy selector to use |
|
inline |
Specify where LuciadCPillar can look for its internal resource.
If this method is not invoked, the library with look for its data in the current directory.
resourcePath |