Checks if this key has an associated value in the underlying context.
The key.
true
if the key has an associated value, false
otherwise.
Retrieves the value associated with the given key in the underlying context.
Returns an empty string if no value is associated with the key. Use ImplicitContext#containsKey to distinguish between an empty-string value and no value at all.
The key.
The value associated with the key, or an empty string if no value is associated with the key.
Creates or updates a key/value entry in the underlying context.
The key.
The value.
The previous value associated with the key, if any.
Removes the entry for the given key in the underlying context.
The key.
The value that was associated with the key, if any.
Interface to associate implicit contexts with communicators.
When you make a remote invocation without an explicit context parameter, Ice uses the per-proxy context (if any) combined with the
ImplicitContext
associated with the communicator.Ice provides two implementations of
ImplicitContext
, depending on the value of theIce.ImplicitContext
property:The
ImplicitContext
interface provides several operations to create, update, or retrieve an entry in the underlying context without retrieving a copy of the entire context.