Click or drag to resize

SettingsDictionary Class

Provides settings for a job configuration.
Inheritance Hierarchy
System.Object
  System.Collections.Generic.Dictionary<String, String>
    Ookii.Jumbo.Jet.Jobs.SettingsDictionary

Namespace:  Ookii.Jumbo.Jet.Jobs
Assembly:  Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax
[SerializableAttribute]
public sealed class SettingsDictionary : Dictionary<string, string>, 
	IXmlSerializable

The SettingsDictionary type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyComparer (Inherited from Dictionary<String, String>.)
Public propertyCount (Inherited from Dictionary<String, String>.)
Public propertyItem
Gets or sets the value associated with the specified key.
(Inherited from Dictionary<String, String>.)
Public propertyKeys (Inherited from Dictionary<String, String>.)
Public propertyValues (Inherited from Dictionary<String, String>.)
Top
Methods
  NameDescription
Public methodAdd
Adds the specified key and value to the dictionary.
(Inherited from Dictionary<String, String>.)
Public methodAddSetting
Adds a setting with the specified type.
Public methodClear (Inherited from Dictionary<String, String>.)
Public methodContainsKey (Inherited from Dictionary<String, String>.)
Public methodContainsValue (Inherited from Dictionary<String, String>.)
Public methodEnsureCapacity
Ensures that the dictionary can hold up to a specified number of entries without any further expansion of its backing storage.
(Inherited from Dictionary<String, String>.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetEnumerator (Inherited from Dictionary<String, String>.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodStatic memberGetJobOrStageSetting(JobConfiguration, StageConfiguration, String, String)
Gets a setting's string value with the specified default value, checking first in the stage settings and then in the job settings.
Public methodStatic memberGetJobOrStageSetting<T>(JobConfiguration, StageConfiguration, String, T)
Gets a setting with the specified type and default value, checking first in the stage settings and then in the job settings.
Public methodGetObjectData (Inherited from Dictionary<String, String>.)
Public methodGetSetting(String, String)
Gets a string setting with the specified default value.
Public methodGetSetting<T>(String, T)
Gets a setting with the specified type and default value.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodOnDeserialization
Implements the ISerializable interface and raises the deserialization event when the deserialization is complete.
(Inherited from Dictionary<String, String>.)
Public methodRemove(TKey) (Inherited from Dictionary<String, String>.)
Public methodRemove(TKey, TValue) (Inherited from Dictionary<String, String>.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodTrimExcess()
Sets the capacity of this dictionary to what it would be if it had been originally initialized with all its entries.
(Inherited from Dictionary<String, String>.)
Public methodTrimExcess(Int32)
Sets the capacity of this dictionary to hold up a specified number of entries without any further expansion of its backing storage.
(Inherited from Dictionary<String, String>.)
Public methodTryAdd
Attempts to add the specified key and value to the dictionary.
(Inherited from Dictionary<String, String>.)
Public methodTryGetSetting<T>
Tries to get a setting with the specified type.
Public methodTryGetValue
Gets the value associated with the specified key.
(Inherited from Dictionary<String, String>.)
Top
See Also