The ResolverDictionary Class
Retired Content |
---|
This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist. |
The ResolverDictionary class is a Dictionary-based class that can store instances of the Resolver class as String name/value pairs. When creating instances of the ResolverDictionary class, you must provide a reference to an existing Dictionary instance. The ResolverDictionary class provides the data that the Resolver class uses when performing run-time resolution.
The ResolverDictionary class is part of the project named ESB.Resolver.csproj, located in the \Source\Core\Source\ESB.Resolver folder. The ESB Guidance Core installer installs and registers the ResolverDictionary class in the global assembly cache.
The ResolverDictionary class exposes one method and one property:
- Item(key). This method takes a String value containing a key name. It returns the corresponding String value or an empty String if the item does not exist in the underlying Dictionary instance.
- BaseDictionary. This property returns a reference to the underlying Dictionary instance.