Class DynamicSettingsBag
- Namespace
- Nucs.JsonSettings
- Assembly
- Nucs.JsonSettings.dll
A dynamic wrapper to a SettingsBag.
public sealed class DynamicSettingsBag : DynamicObject, IDynamicMetaObjectProvider, IDisposable
- Inheritance
-
DynamicSettingsBag
- Implements
- Inherited Members
Constructors
DynamicSettingsBag(SettingsBag)
public DynamicSettingsBag(SettingsBag bag)
Parameters
bagSettingsBag
Methods
AsBag()
Casts back a from DynamicSettingsBag to SettingsBag.
public SettingsBag AsBag()
Returns
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public void Dispose()
TryGetIndex(GetIndexBinder, object[], out object)
Provides the implementation for operations that get a value by index. Classes derived from the DynamicObject class can override this method to specify dynamic behavior for indexing operations.
public override bool TryGetIndex(GetIndexBinder binder, object[] indexes, out object result)
Parameters
binderGetIndexBinderProvides information about the operation.
indexesobject[]The indexes that are used in the operation. For example, for the
sampleObject[3]operation in C# (sampleObject(3)in Visual Basic), wheresampleObjectis derived from theDynamicObjectclass,indexes[0]is equal to 3.resultobjectThe result of the index operation.
Returns
- bool
true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a run-time exception is thrown.)
TryGetMember(GetMemberBinder, out object)
Provides the implementation for operations that get member values. Classes derived from the DynamicObject class can override this method to specify dynamic behavior for operations such as getting a value for a property.
public override bool TryGetMember(GetMemberBinder binder, out object result)
Parameters
binderGetMemberBinderProvides information about the object that called the dynamic operation. The
binder.Nameproperty provides the name of the member on which the dynamic operation is performed. For example, for theConsole.WriteLine(sampleObject.SampleProperty)statement, wheresampleObjectis an instance of the class derived from the DynamicObject class,binder.Namereturns "SampleProperty". Thebinder.IgnoreCaseproperty specifies whether the member name is case-sensitive.resultobjectThe result of the get operation. For example, if the method is called for a property, you can assign the property value to
result.
Returns
- bool
true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a run-time exception is thrown.)
TrySetIndex(SetIndexBinder, object[], object)
Provides the implementation for operations that set a value by index. Classes derived from the DynamicObject class can override this method to specify dynamic behavior for operations that access objects by a specified index.
public override bool TrySetIndex(SetIndexBinder binder, object[] indexes, object value)
Parameters
binderSetIndexBinderProvides information about the operation.
indexesobject[]The indexes that are used in the operation. For example, for the
sampleObject[3] = 10operation in C# (sampleObject(3) = 10in Visual Basic), wheresampleObjectis derived from the DynamicObject class,indexes[0]is equal to 3.valueobjectThe value to set to the object that has the specified index. For example, for the
sampleObject[3] = 10operation in C# (sampleObject(3) = 10in Visual Basic), wheresampleObjectis derived from the DynamicObject class,valueis equal to 10.
Returns
- bool
true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.
TrySetMember(SetMemberBinder, object)
Provides the implementation for operations that set member values. Classes derived from the DynamicObject class can override this method to specify dynamic behavior for operations such as setting a value for a property.
public override bool TrySetMember(SetMemberBinder binder, object value)
Parameters
binderSetMemberBinderProvides information about the object that called the dynamic operation. The
binder.Nameproperty provides the name of the member to which the value is being assigned. For example, for the statementsampleObject.SampleProperty = "Test", wheresampleObjectis an instance of the class derived from the DynamicObject class,binder.Namereturns "SampleProperty". Thebinder.IgnoreCaseproperty specifies whether the member name is case-sensitive.valueobjectThe value to set to the member. For example, for
sampleObject.SampleProperty = "Test", wheresampleObjectis an instance of the class derived from the DynamicObject class, thevalueis "Test".